/* legacy-patches.css
   Verbatim, order-preserved quarantine of the later-added
   "visual correction" CSS from the original style.css that could not
   be safely attributed rule-by-rule to a single page without deeper
   analysis. Loaded LAST on every page so its cascade position exactly
   matches its original position at the end of style.css.
   See README.md for the follow-up plan to eventually split this file
   too, once visual regression tooling is available in this project. */

/* Global layout width system */
main {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.container,
.site-header,
.site-footer {
  width: 100% !important;
  max-width: var(--container-max) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: var(--container-padding) !important;
  padding-right: var(--container-padding) !important;
}

.container > * {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

@media (max-width: 980px) {
  :root {
    --container-padding: 18px;
  }
}

@media (max-width: 620px) {
  :root {
    --container-padding: 14px;
  }
}

/* Homepage responsive rhythm */
.home-page {
  --home-section-gap: clamp(30px, 7vw, 50px);
  --home-card-gap: clamp(18px, 2vw, 24px);
}

.home-page main {
  padding-bottom: clamp(56px, 7vw, 88px);
}

.home-page .hero {
  margin-top: clamp(8px, 2.4vw, 24px) !important;
  overflow: hidden;
}

.home-page .hero::before {
  inset: -2px 0 0;
}

.home-page .hero::after {
  inset: auto 0 0;
}

.home-page .container > section + section {
  margin-top: var(--home-section-gap) !important;
}

.home-page .section-kicker {
  margin-bottom: 10px;
}

.home-page .services h2 {
  margin-bottom: clamp(24px, 3vw, 34px);
}

.home-page .service-grid,
.home-page .pricing-grid,
.home-page .testimonial-grid,
.home-page .feature-strip {
  gap: var(--home-card-gap);
}

.home-page .process {
  padding-top: 2px;
}

.home-page .stats-band {
  padding-block: clamp(16px, 2vw, 22px);
}

.home-page .pricing,
.home-page .testimonials {
  padding-top: 2px;
}

.home-page .testimonials .section-kicker {
  margin-bottom: clamp(18px, 2.4vw, 26px);
}

.home-page .cta-band {
  margin-bottom: 0 !important;
}

/* Homepage premium section segmentation */
.home-page {
  --home-section-gap: clamp(46px, 7vw, 82px);
  --home-section-pad-y: clamp(38px, 5vw, 62px);
  --home-section-pad-x: clamp(20px, 3.2vw, 38px);
  --home-section-radius: 20px;
  --home-cyan-glow: rgba(5, 201, 255, .2);
  --home-violet-glow: rgba(155, 37, 255, .16);
  --home-blue-glow: rgba(10, 134, 255, .18);
}

.home-page main {
  position: relative;
  overflow: hidden;
}

.home-page main::before {
  content: "";
  position: absolute;
  inset: 430px max(-8vw, -90px) 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 13% 18%, rgba(5, 201, 255, .1), transparent 18rem),
    radial-gradient(circle at 86% 54%, rgba(155, 37, 255, .09), transparent 21rem),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, .24) 10%, transparent 24%, rgba(0, 0, 0, .18) 45%, transparent 62%, rgba(0, 0, 0, .24) 84%, transparent),
    repeating-linear-gradient(135deg, rgba(255,255,255,.025) 0 1px, transparent 1px 28px);
  opacity: .56;
  mask-image: linear-gradient(180deg, transparent, #000 9%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 9%, #000 92%, transparent);
}

.home-page .container > section {
  position: relative;
  isolation: isolate;
}

.home-page .container > section:not(.hero, .stats-band, .cta-band) {
  padding: var(--home-section-pad-y) var(--home-section-pad-x);
  border-radius: var(--home-section-radius);
}

.home-page .container > section:not(.hero, .stats-band, .cta-band)::before,
.home-page .container > section:not(.hero, .stats-band, .cta-band)::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: inherit;
}

.home-page .container > section:not(.hero, .stats-band, .cta-band)::before {
  inset: 0;
  z-index: -2;
  border: 1px solid rgba(255,255,255,.075);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.065),
    inset 0 -1px 0 rgba(0, 201, 255, .035),
    0 28px 78px rgba(0, 0, 0, .28);
}

.home-page .container > section:not(.hero, .stats-band, .cta-band)::after {
  inset: 1px;
  z-index: -1;
  opacity: .95;
}

.home-page .container > section:not(.hero)::before {
  content: "";
}

.home-page .container > section:not(.hero) {
  box-shadow: 0 -22px 48px rgba(0, 0, 0, .16);
}

.home-page .container > section:not(.hero, .cta-band)::before {
  background-blend-mode: screen, normal, normal;
}

.home-page .services {
  overflow: hidden;
}

.home-page .services::before {
  background:
    linear-gradient(145deg, rgba(4, 28, 74, .86), rgba(2, 10, 32, .7) 58%, rgba(1, 7, 22, .82)),
    rgba(1, 7, 22, .44);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    inset 0 0 0 1px rgba(5, 201, 255, .035),
    0 30px 82px rgba(0, 0, 0, .32),
    0 -18px 42px rgba(5, 201, 255, .045);
}

.home-page .services::after {
  background:
    radial-gradient(circle at 8% 10%, rgba(5, 201, 255, .24), transparent 17rem),
    radial-gradient(circle at 90% 86%, rgba(155, 37, 255, .16), transparent 20rem),
    linear-gradient(180deg, rgba(255,255,255,.04), transparent 43%),
    repeating-linear-gradient(120deg, rgba(255,255,255,.03) 0 1px, transparent 1px 26px);
}

.home-page .process {
  overflow: hidden;
}

.home-page .process::before {
  background:
    linear-gradient(180deg, rgba(4, 8, 18, .94), rgba(12, 16, 27, .86)),
    linear-gradient(90deg, rgba(1, 7, 22, .2), rgba(5, 201, 255, .035), rgba(1, 7, 22, .2));
  border-color: rgba(255,255,255,.06);
}

.home-page .process::after {
  background:
    radial-gradient(ellipse at 50% 13%, rgba(0, 204, 255, .2), transparent 17rem),
    linear-gradient(90deg, transparent 0 9%, rgba(255,255,255,.048) 9% 9.16%, transparent 9.16% 18%),
    linear-gradient(180deg, rgba(255,255,255,.026), transparent 62%);
  background-size: auto, 148px 100%, auto;
}

.home-page .process-grid {
  padding-top: 6px;
}

.home-page .process-line {
  top: calc(var(--home-section-pad-y) + 50px);
}

.home-page .stats-band {
  margin-inline: auto !important;
  padding: clamp(18px, 2.6vw, 25px) clamp(22px, 3vw, 34px);
  overflow: hidden;
  outline: 1px solid rgba(255,255,255,.1);
  outline-offset: 10px;
  background:
 radial-gradient(circle at 15% 50%, rgba(74, 215, 255, .6), transparent 8rem),
    linear-gradient(100deg, #0acaff 0%, #054bed 52%, #18037a 100%),
  box-shadow:
    0 24px 65px rgba(0, 0, 0, .34),
    0 0 44px rgba(25, 121, 255, .24),
    inset 0 1px 0 rgba(255,255,255,.18);
}

.home-page .stats-band::before {
  content: "";
  position: absolute;
  inset: -35% -10%;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 22% 50%, rgba(255,255,255,.24), transparent 16rem),
    radial-gradient(ellipse at 82% 44%, rgba(5, 201, 255, .16), transparent 12rem),
    repeating-linear-gradient(115deg, rgba(255,255,255,.14) 0 1px, transparent 1px 28px);
  opacity: .25;
}

.home-page .pricing {
  overflow: visible;
}

.home-page .pricing::before {
  background:
    linear-gradient(150deg, rgba(2, 7, 21, .92), rgba(4, 21, 58, .76) 48%, rgba(4, 6, 22, .9)),
    rgba(1, 7, 22, .46);
  border-color: rgba(5, 201, 255, .1);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.07),
    inset 0 0 38px rgba(5, 201, 255, .035),
    0 34px 88px rgba(0, 0, 0, .34);
}

.home-page .pricing::after {
  background:
    radial-gradient(circle at 50% -5%, rgba(5, 201, 255, .2), transparent 18rem),
    radial-gradient(circle at 8% 78%, rgba(155, 37, 255, .12), transparent 15rem),
    linear-gradient(90deg, rgba(0, 0, 0, .26), transparent 22%, transparent 78%, rgba(0, 0, 0, .2)),
    linear-gradient(180deg, rgba(255,255,255,.026), transparent),
    repeating-linear-gradient(90deg, rgba(255,255,255,.024) 0 1px, transparent 1px 68px);
}

.home-page .feature-strip {
  overflow: hidden;
}

.home-page .feature-strip::before {
  background:
    linear-gradient(90deg, rgba(3, 17, 46, .56), rgba(2, 8, 25, .82)),
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,0)),
    rgba(0, 0, 0, .2);
  backdrop-filter: blur(18px);
}

.home-page .feature-strip::after {
  background:
    linear-gradient(135deg, rgba(255,255,255,.06), transparent 29%),
    radial-gradient(circle at 8% 50%, rgba(5, 201, 255, .18), transparent 15rem),
    radial-gradient(circle at 95% 18%, rgba(155, 37, 255, .14), transparent 14rem),
    linear-gradient(180deg, rgba(255,255,255,.02), transparent 75%);
}

.home-page .testimonials {
  overflow: hidden;
}

.home-page .testimonials::before {
  background:
    linear-gradient(180deg, rgba(3, 14, 39, .94), rgba(4, 9, 28, .78)),
    radial-gradient(circle at 50% 110%, rgba(5, 201, 255, .08), transparent 20rem),
    rgba(1, 7, 22, .44);
}

.home-page .testimonials::after {
  background:
    radial-gradient(ellipse at 50% 110%, rgba(5, 201, 255, .2), transparent 19rem),
    radial-gradient(ellipse at 14% 12%, rgba(155, 37, 255, .1), transparent 15rem),
    repeating-linear-gradient(0deg, rgba(255,255,255,.034) 0 1px, transparent 1px 42px);
}

.home-page .cta-band {
  margin-top: var(--home-section-gap) !important;
  outline: 1px solid rgba(255,255,255,.1);
  outline-offset: 10px;
  border-color: rgba(54, 202, 255, .5);
  background:
    radial-gradient(circle at 15% 50%, rgba(74, 215, 255, .6), transparent 8rem),
    linear-gradient(100deg, #0acaff 0%, #054bed 52%, #18037a 100%)
  box-shadow:
    0 30px 80px rgba(0, 0, 0, .36),
    0 0 44px rgba(5, 201, 255, .16),
    inset 0 1px 0 rgba(255,255,255,.13),
    inset 0 0 46px rgba(5, 201, 255, .05);
}

.home-page .cta-band::before {
  border-color: rgba(255,255,255,.26);
  box-shadow: 0 -18px 36px rgba(5, 201, 255, .1);
}

.home-page .cta-band::after {
  border-color: rgba(5, 201, 255, .24);
}

.home-page .hero::after {
  box-shadow: 0 28px 52px rgba(0, 0, 0, .38);
}

.home-page .hero + .services {
  margin-top: clamp(30px, 4.4vw, 48px) !important;
}

.home-page .services::before,
.home-page .pricing::before,
.home-page .testimonials::before {
  backdrop-filter: blur(14px);
}

.home-page .service-card,
.home-page .price-card,
.home-page .quote-card,
.home-page .feature-card {
  border-color: rgba(255,255,255,.09);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.075),
    0 18px 45px rgba(0, 0, 0, .3),
    0 0 26px rgba(0, 151, 255, .08);
}

.home-page .services::before,
.home-page .process::before,
.home-page .pricing::before,
.home-page .feature-strip::before,
.home-page .testimonials::before {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 18px), calc(100% - 58px) 100%, 0 100%);
}

.home-page .services,
.home-page .pricing,
.home-page .testimonials {
  width: min(100% - 96px, 1080px);
}

.home-page .process,
.home-page .feature-strip {
  width: min(100% - 108px, 1040px);
}

@media (max-width: 980px) {
  .home-page {
    --home-section-gap: clamp(54px, 8vw, 74px);
    --home-card-gap: 18px;
  }

  .home-page .hero {
    min-height: clamp(528px, 74vw, 649px);
    padding: 42px 0 54px;
    align-items: start;
    overflow: hidden;
    border-radius: 0 0 18px 18px;
    background:
      radial-gradient(circle at 88% 78%, rgba(5, 201, 255, .22), transparent 14rem),
      radial-gradient(circle at 76% 34%, rgba(155, 37, 255, .12), transparent 16rem);
  }

  .home-page .hero::before {
    display: none;
  }

  .home-page .hero::after {
    inset: -18px 0 -1px;
    height: auto;
    background:
      linear-gradient(90deg, rgba(1, 7, 22, .98) 0%, rgba(1, 7, 22, .94) 42%, rgba(1, 7, 22, .54) 68%, rgba(1, 7, 22, .1) 100%),
      linear-gradient(180deg, rgba(1, 7, 22, .98) 0%, rgba(1, 7, 22, .86) 46%, rgba(1, 7, 22, .5) 70%, rgba(2, 8, 25, .98) 100%),
      radial-gradient(circle at 92% 78%, rgba(0, 199, 255, .2), transparent 16rem);
  }

  .home-page .hero-copy {
    max-width: 650px;
    padding-top: 0;
    position: relative;
    z-index: 2;
  }

  .home-page .hero-visual {
    position: absolute;
    inset: 0;
    z-index: 0;
    min-height: 0;
    margin-top: 0;
    opacity: .4;
    overflow: hidden;
    pointer-events: none;
    mask-image:
      radial-gradient(ellipse at 78% 48%, #000 0%, rgba(0, 0, 0, .7) 42%, rgba(0, 0, 0, .34) 60%, transparent 86%),
      linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, .72) 14%, #000 44%, rgba(0, 0, 0, .72) 84%, transparent 100%);
    -webkit-mask-image:
      radial-gradient(ellipse at 78% 48%, #000 0%, rgba(0, 0, 0, .7) 42%, rgba(0, 0, 0, .34) 60%, transparent 86%),
      linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, .72) 14%, #000 44%, rgba(0, 0, 0, .72) 84%, transparent 100%);
    mask-composite: intersect;
    -webkit-mask-composite: source-in;
  }

  .home-page .hero-visual img {
    width: auto;
    height: 100%;
    max-width: none;
    object-position: right center;
    border-radius: 0;
    filter: none;
  }

  .home-page .hero-buttons {
    gap: 14px;
  }

  .home-page .trust-row {
    max-width: 620px;
    margin-top: 30px;
  }

  .home-page .service-card,
  .home-page .price-card,
  .home-page .quote-card {
    padding: 24px;
  }

  .home-page .feature-card {
    min-height: 104px;
  }
}

@media (max-width: 620px) {
  .home-page {
    --home-section-gap: 58px;
    --home-card-gap: 16px;
  }

  .home-page main {
    padding-bottom: 60px;
  }

  .home-page .hero {
    min-height: 649px;
    padding: 34px 0 48px;
    background:
      radial-gradient(circle at 91% 73%, rgba(5, 201, 255, .28), transparent 11.5rem),
      radial-gradient(circle at 76% 35%, rgba(155, 37, 255, .18), transparent 12rem),
      linear-gradient(180deg, rgba(2, 8, 25, .2), rgba(2, 8, 25, 0));
  }

  .home-page .hero::after {
    inset: -14px 0 -1px;
    height: auto;
    background:
      linear-gradient(90deg, rgba(1, 7, 22, .99) 0%, rgba(1, 7, 22, .93) 44%, rgba(1, 7, 22, .24) 72%, rgba(1, 7, 22, 0) 100%),
      linear-gradient(180deg, rgba(1, 7, 22, .99) 0%, rgba(1, 7, 22, .82) 42%, rgba(1, 7, 22, .12) 69%, #020819 100%),
      radial-gradient(circle at 93% 74%, rgba(5, 201, 255, .3), transparent 12rem);
  }

  .home-page .eyebrow {
    margin-bottom: 12px;
    font-size: 12px;
  }

  .home-page .hero h1 {
    max-width: 11ch;
    font-size: clamp(38px, 11.4vw, 46px);
    line-height: 1.03;
  }

  .home-page .hero-subtitle {
    width: min(100%, 318px);
    margin: 16px 0 22px;
    font-size: 16px;
    line-height: 1.65;
  }

  .home-page .hero-buttons {
    width: min(100%, 340px);
    gap: 12px;
  }

  .home-page .hero-buttons .btn {
    min-height: 50px;
  }

  .home-page .trust-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 340px);
    gap: 14px 12px;
    margin-top: 34px;
  }

  .home-page .trust-item {
    min-width: 0;
  }

  .home-page .section-kicker {
    margin-bottom: 12px;
  }

  .home-page .services h2 {
    margin-bottom: 24px;
    font-size: clamp(28px, 7.6vw, 33px);
  }

  .home-page .service-card,
  .home-page .price-card,
  .home-page .quote-card,
  .home-page .feature-card {
    padding: 22px 20px;
  }

  .home-page .process-grid {
    gap: 20px;
  }

  .home-page .process-step {
    padding: 18px 16px;
    border: 1px solid rgba(135, 167, 255, .18);
    border-radius: 10px;
    background: rgba(4, 17, 49, .44);
  }

  .home-page .stats-band {
    gap: 18px;
    padding: 22px;
  }

  .home-page .stat {
    gap: 16px;
  }

  .home-page .feature-card {
    grid-template-columns: 44px 1fr;
  }

  .home-page .cta-band {
    padding: 112px 22px 28px;
  }

  .home-page .cta-band h2,
  .home-page .cta-band p {
    max-width: 320px;
    margin-inline: auto;
  }
}

/* Homepage full-width section environments */
.home-page {
  --home-env-bleed-x: calc(50% - 50vw);
}

.home-page .section-heading {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto clamp(22px, 3vw, 34px);
  text-align: center;
}

.home-page .section-heading h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.16;
  font-weight: 800;
  letter-spacing: 0;
}

.home-page .feature-strip .section-heading {
  grid-column: 1 / -1;
}

.home-page .services h2,
.home-page .process .section-kicker,
.home-page .testimonials .section-kicker,
.home-page .service-grid,
.home-page .process-grid,
.home-page .pricing-grid,
.home-page .testimonial-grid,
.home-page .feature-card {
  position: relative;
  z-index: 1;
}

.home-page .container > section:not(.hero, .stats-band, .cta-band) {
  background:
    linear-gradient(145deg, rgba(3, 13, 36, .58), rgba(1, 7, 22, .54)),
    rgba(2, 8, 25, .3);
  border: 1px solid rgba(255,255,255,.07);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    inset 0 -1px 0 rgba(0, 201, 255, .035),
    0 28px 78px rgba(0, 0, 0, .28);
}

.home-page .container > section:not(.hero, .stats-band, .cta-band)::before {
  inset: clamp(-26px, -2.4vw, -16px) var(--home-env-bleed-x);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  clip-path: none;
  opacity: 1;
}

.home-page .container > section:not(.hero, .stats-band, .cta-band)::after {
  inset: clamp(-26px, -2.4vw, -16px) var(--home-env-bleed-x);
  border-radius: 0;
  clip-path: none;
  opacity: .9;
  mix-blend-mode: screen;
  mask-image: linear-gradient(180deg, transparent, #000 9%, #000 91%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 9%, #000 91%, transparent);
}

.home-page .services::before {
  background:
    radial-gradient(ellipse at 12% 18%, rgba(0, 204, 255, .18), transparent 24rem),
    radial-gradient(ellipse at 82% 52%, rgba(19, 83, 192, .18), transparent 30rem),
    linear-gradient(115deg, rgba(2, 22, 58, .76), rgba(1, 7, 22, .92) 58%, rgba(2, 8, 25, .86));
}

.home-page .services::after {
  background:
    radial-gradient(circle at 20% 24%, rgba(5, 201, 255, .3), transparent 12rem),
    radial-gradient(circle at 91% 82%, rgba(155, 37, 255, .16), transparent 18rem),
    linear-gradient(120deg, transparent 0 42%, rgba(255,255,255,.04) 42% 42.18%, transparent 42.18%),
    repeating-linear-gradient(120deg, rgba(255,255,255,.025) 0 1px, transparent 1px 32px);
}

.home-page .process::before {
  background:
    radial-gradient(ellipse at 50% 8%, rgba(0, 153, 255, .16), transparent 24rem),
    linear-gradient(180deg, rgba(7, 10, 20, .98), rgba(13, 18, 31, .9) 52%, rgba(2, 8, 25, .94));
}

.home-page .process::after {
  background:
    linear-gradient(90deg, transparent 0 10%, rgba(255,255,255,.05) 10% 10.12%, transparent 10.12% 20%),
    linear-gradient(145deg, rgba(255,255,255,.035), transparent 36%),
    radial-gradient(circle at 80% 76%, rgba(0, 201, 255, .13), transparent 18rem);
  background-size: 156px 100%, auto, auto;
}

.home-page .pricing {
  background:
    linear-gradient(145deg, rgba(3, 14, 39, .72), rgba(5, 11, 32, .68)),
    rgba(1, 7, 22, .42);
  border-color: rgba(5, 201, 255, .11);
}

.home-page .pricing::before {
  background:
    radial-gradient(ellipse at 50% -5%, rgba(0, 207, 255, .26), transparent 26rem),
    radial-gradient(ellipse at 12% 78%, rgba(119, 58, 255, .2), transparent 23rem),
    radial-gradient(ellipse at 88% 66%, rgba(12, 91, 255, .16), transparent 24rem),
    linear-gradient(135deg, rgba(1, 7, 22, .96), rgba(3, 21, 58, .9) 44%, rgba(2, 6, 20, .98));
}

.home-page .pricing::after {
  background:
    radial-gradient(circle at 49% 26%, rgba(5, 201, 255, .24), transparent 12rem),
    radial-gradient(circle at 73% 82%, rgba(155, 37, 255, .14), transparent 17rem),
    linear-gradient(90deg, rgba(255,255,255,.03) 0 1px, transparent 1px 88px),
    linear-gradient(0deg, rgba(255,255,255,.025) 0 1px, transparent 1px 76px);
}

.home-page .feature-strip {
  background:
    linear-gradient(120deg, rgba(4, 22, 58, .62), rgba(2, 8, 25, .68)),
    rgba(1, 7, 22, .34);
}

.home-page .feature-strip::before {
  background:
    radial-gradient(ellipse at 15% 50%, rgba(5, 201, 255, .2), transparent 22rem),
    radial-gradient(ellipse at 90% 18%, rgba(26, 83, 206, .18), transparent 24rem),
    linear-gradient(100deg, rgba(3, 24, 65, .82), rgba(1, 7, 22, .95) 68%);
}

.home-page .feature-strip::after {
  background:
    radial-gradient(circle at 10% 46%, rgba(5, 201, 255, .22), transparent 10rem),
    radial-gradient(circle at 92% 30%, rgba(155, 37, 255, .13), transparent 15rem),
    repeating-linear-gradient(135deg, rgba(255,255,255,.032) 0 1px, transparent 1px 30px);
}

.home-page .testimonials::before {
  background:
    radial-gradient(ellipse at 18% 16%, rgba(97, 49, 255, .17), transparent 23rem),
    radial-gradient(ellipse at 70% 100%, rgba(0, 204, 255, .2), transparent 28rem),
    linear-gradient(180deg, rgba(4, 13, 38, .96), rgba(2, 7, 22, .9) 58%, rgba(5, 14, 35, .96));
}

.home-page .testimonials::after {
  background:
    radial-gradient(circle at 52% 110%, rgba(5, 201, 255, .27), transparent 17rem),
    radial-gradient(circle at 15% 14%, rgba(155, 37, 255, .16), transparent 14rem),
    repeating-linear-gradient(0deg, rgba(255,255,255,.028) 0 1px, transparent 1px 40px);
}

.home-page .stats-band {
  box-shadow:
    0 0 0 100vmax rgba(2, 10, 28, .36),
    0 24px 65px rgba(0, 0, 0, .34),
    0 0 44px rgba(25, 121, 255, .24),
    inset 0 1px 0 rgba(255,255,255,.18);
  clip-path: inset(-26px -100vmax);
}

.home-page .cta-band {
  box-shadow:
    0 0 0 100vmax rgba(2, 8, 25, .56),
    0 30px 80px rgba(0, 0, 0, .36),
    0 0 54px rgba(5, 201, 255, .24),
    0 0 120px rgba(155, 37, 255, .12),
    inset 0 1px 0 rgba(255,255,255,.13),
    inset 0 0 46px rgba(5, 201, 255, .05);
  clip-path: inset(-42px -100vmax);
}

@media (max-width: 620px) {
  .home-page .section-heading {
    margin-bottom: 22px;
  }

  .home-page .section-heading h2 {
    font-size: clamp(23px, 6.8vw, 30px);
  }
}

/* US LLC homepage-aligned layout */
.us-llc-page {
  --us-section-gap: clamp(46px, 7vw, 82px);
  --us-section-pad-y: clamp(38px, 5vw, 62px);
  --us-section-pad-x: clamp(20px, 3.2vw, 38px);
  --us-section-radius: 20px;
}

.us-llc-page main {
  position: relative;
  overflow: hidden;
  padding-bottom: clamp(56px, 7vw, 88px);
}

.us-llc-page .container {
  position: relative;
  z-index: 1;
}

.us-llc-page .container > section {
  position: relative;
  isolation: isolate;
  margin-bottom: 0 !important;
}

.us-llc-page .container > section + section {
  margin-top: var(--us-section-gap) !important;
}

.us-llc-page .us-hero {
  width: min(100%, var(--container-max)) !important;
  min-height: 374px;
  margin: clamp(8px, 2.4vw, 24px) auto 0 !important;
  overflow: hidden;
  animation: heroSettle .75s ease both;
}

.us-llc-page .us-hero::before {
  inset: -2px 0 0;
  background-image:
    linear-gradient(90deg, rgba(1, 7, 22, .98) 0%, rgba(1, 8, 25, .92) 30%, rgba(1, 7, 22, .62) 46%, rgba(1, 7, 22, .08) 63%, rgba(1, 7, 22, 0) 76%),
    linear-gradient(180deg, rgba(1, 7, 22, .08) 0%, rgba(1, 7, 22, 0) 63%, rgba(1, 7, 22, .88) 100%);
}

.us-llc-page .us-hero::after {
  inset: auto 0 0;
  height: 92px;
  z-index: -1;
  background: linear-gradient(180deg, transparent, rgba(2, 8, 25, .96));
  box-shadow: 0 28px 52px rgba(0, 0, 0, .38);
}

.us-llc-page .accounting-hero-copy {
  animation: riseFade .7s ease .08s both;
}

.us-llc-page .us-visual {
  min-height: 430px;
  z-index: 2;
  animation: heroFloat 7s ease-in-out infinite;
}

.us-llc-page .us-service-section,
.us-llc-page .us-bottom-grid {
  width: min(100%, var(--container-max)) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: var(--us-section-pad-y) var(--us-section-pad-x);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--us-section-radius);
  background:
    linear-gradient(145deg, rgba(3, 13, 36, .58), rgba(1, 7, 22, .54)),
    rgba(2, 8, 25, .3);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    inset 0 -1px 0 rgba(0, 201, 255, .035),
    0 28px 78px rgba(0, 0, 0, .28);
}

.us-llc-page .us-service-section::before,
.us-llc-page .us-service-section::after,
.us-llc-page .us-bottom-grid::before,
.us-llc-page .us-bottom-grid::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: inherit;
}

.us-llc-page .us-service-section::before,
.us-llc-page .us-bottom-grid::before {
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse at 12% 18%, rgba(0, 204, 255, .18), transparent 24rem),
    radial-gradient(ellipse at 82% 52%, rgba(19, 83, 192, .18), transparent 30rem),
    linear-gradient(115deg, rgba(2, 22, 58, .76), rgba(1, 7, 22, .92) 58%, rgba(2, 8, 25, .86));
}

.us-llc-page .us-service-section::after,
.us-llc-page .us-bottom-grid::after {
  inset: 1px;
  z-index: -1;
  opacity: .9;
  mix-blend-mode: screen;
  background:
    radial-gradient(circle at 20% 24%, rgba(5, 201, 255, .3), transparent 12rem),
    radial-gradient(circle at 91% 82%, rgba(155, 37, 255, .16), transparent 18rem),
    linear-gradient(120deg, transparent 0 42%, rgba(255,255,255,.04) 42% 42.18%, transparent 42.18%),
    repeating-linear-gradient(120deg, rgba(255,255,255,.025) 0 1px, transparent 1px 32px);
}

.us-llc-page .us-service-section h2,
.us-llc-page .us-bottom-grid h2 {
  margin-bottom: clamp(22px, 3vw, 34px);
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.16;
  font-weight: 800;
  text-transform: none;
  letter-spacing: 0;
}

.us-llc-page .us-service-grid {
  gap: clamp(18px, 2vw, 24px);
}

.us-llc-page .us-service-section h2,
.us-llc-page .us-service-grid,
.us-llc-page .us-bottom-grid > *,
.us-llc-page .us-process-compact .process-grid,
.us-llc-page .us-process-compact .process-line {
  position: relative;
  z-index: 1;
}

.us-llc-page .us-bottom-grid {
  grid-template-columns: 1fr;
  gap: var(--us-section-gap);
}

.us-llc-page .us-why-compact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.us-llc-page .us-why-compact h2 {
  grid-column: 1 / -1;
  text-align: center;
}

.us-llc-page .us-process-compact.process {
  width: 100%;
  margin: 0;
  padding: var(--us-section-pad-y) var(--us-section-pad-x);
}

.us-llc-page .us-process-compact h2 {
  text-transform: none;
}

.us-llc-page .us-process-compact div::before {
  display: none;
}

.us-llc-page .us-process-compact .process-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 54px;
  padding-top: 6px;
  z-index: 2;
}

.us-llc-page .us-process-compact .process-line {
  position: absolute;
  left: 122px;
  right: 122px;
  top: calc(var(--us-section-pad-y) + 50px);
  z-index: 1;
  border-top: 2px dotted rgba(0, 206, 255, .62);
}

.us-llc-page .us-process-compact .process-icon {
  font-size: 25px;
  font-weight: 900;
}

.us-llc-page .us-process-compact .step-number {
  font-size: 0;
}

.us-llc-page .us-process-compact .process-step h3 {
  margin: 8px 0 0;
}

.us-llc-page .us-cta {
  width: min(100%, var(--container-max)) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: 0 !important;
}

/* CTA button alignment - push to bottom of each card */
.us-llc-page .us-service-card {
  display: flex;
  flex-direction: column;
  transition: transform .28s cubic-bezier(.2,.8,.2,1), border-color .28s ease, box-shadow .28s ease;
}

.us-llc-page .us-service-card .full {
  margin-top: auto;
}

.us-llc-page .us-service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(99, 143, 255, .72);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 22px 62px rgba(0, 0, 0, .32), 0 0 28px rgba(75, 108, 255, .2);
}

.us-llc-page .us-service-card:hover .svc-ico {
  box-shadow: 0 0 28px rgba(92, 77, 255, .55);
  transition: box-shadow .28s ease;
}

@media (max-width: 980px) {
  .us-llc-page {
    --us-section-gap: clamp(54px, 8vw, 74px);
  }

  .us-llc-page .us-hero,
  .us-llc-page .us-service-section,
  .us-llc-page .us-bottom-grid,
  .us-llc-page .us-cta {
    width: min(100% - 36px, 720px) !important;
  }

  .us-llc-page .us-service-grid,
  .us-llc-page .us-process-compact .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .us-llc-page .us-process-compact .process-line {
    display: none;
  }

  .us-llc-page .us-hero {
    grid-template-columns: 1fr;
    min-height: clamp(480px, 70vw, 590px);
    padding: 42px 0 54px;
    align-items: start;
    border-radius: 0 0 18px 18px;
    background:
      radial-gradient(circle at 88% 78%, rgba(59, 102, 255, .22), transparent 14rem),
      radial-gradient(circle at 76% 34%, rgba(0, 136, 255, .12), transparent 16rem);
  }

  .us-llc-page .us-hero::before {
    display: none;
  }

  .us-llc-page .us-hero::after {
    inset: -18px 0 -1px;
    height: auto;
    background:
      linear-gradient(90deg, rgba(1, 7, 22, .98) 0%, rgba(1, 7, 22, .94) 42%, rgba(1, 7, 22, .54) 68%, rgba(1, 7, 22, .1) 100%),
      linear-gradient(180deg, rgba(1, 7, 22, .98) 0%, rgba(1, 7, 22, .86) 46%, rgba(1, 7, 22, .5) 70%, rgba(2, 8, 25, .98) 100%),
      radial-gradient(circle at 92% 78%, rgba(59, 102, 255, .2), transparent 16rem);
  }

  .us-llc-page .accounting-hero-copy {
    max-width: 650px;
    padding-top: 0;
    position: relative;
    z-index: 2;
  }

  .us-llc-page .us-visual {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: auto;
    min-height: 0;
    height: auto;
    margin-top: 0;
    opacity: .4;
    pointer-events: none;
    animation: none;
  }
}

@media (max-width: 620px) {
  .us-llc-page {
    --us-section-gap: 58px;
  }

  .us-llc-page main {
    padding-bottom: 60px;
  }

  .us-llc-page .us-hero,
  .us-llc-page .us-service-section,
  .us-llc-page .us-bottom-grid,
  .us-llc-page .us-cta {
    width: 100% !important;
  }

  .us-llc-page .us-service-section h2,
  .us-llc-page .us-bottom-grid h2 {
    font-size: clamp(23px, 6.8vw, 30px);
    max-width: 100%;
    overflow-wrap: break-word;
    text-wrap: balance;
  }

  .us-llc-page .us-service-grid,
  .us-llc-page .us-why-compact,
  .us-llc-page .us-process-compact .process-grid {
    grid-template-columns: 1fr;
  }

  .us-llc-page .us-hero {
    min-height: 590px;
    padding: 34px 0 48px;
    background:
      radial-gradient(circle at 91% 73%, rgba(59, 102, 255, .28), transparent 11.5rem),
      radial-gradient(circle at 76% 35%, rgba(0, 136, 255, .18), transparent 12rem),
      linear-gradient(180deg, rgba(2, 8, 25, .2), rgba(2, 8, 25, 0));
  }

  .us-llc-page .us-hero::after {
    inset: -14px 0 -1px;
    height: auto;
    background:
      linear-gradient(90deg, rgba(1, 7, 22, .99) 0%, rgba(1, 7, 22, .93) 44%, rgba(1, 7, 22, .24) 72%, rgba(1, 7, 22, 0) 100%),
      linear-gradient(180deg, rgba(1, 7, 22, .99) 0%, rgba(1, 7, 22, .82) 42%, rgba(1, 7, 22, .12) 69%, #020819 100%),
      radial-gradient(circle at 93% 74%, rgba(59, 102, 255, .3), transparent 12rem);
  }

  .us-llc-page .hero-subtitle {
    width: min(100%, 318px);
    margin: 16px 0 22px;
    font-size: 16px;
    line-height: 1.65;
  }

  .us-llc-page .hero-buttons {
    width: min(100%, 340px);
    gap: 12px;
  }

  .us-llc-page .hero-buttons .btn {
    min-height: 50px;
  }
}

/* Accounting page homepage-aligned layout */
.accounting-page {
  --accounting-section-gap: clamp(46px, 7vw, 82px);
  --accounting-section-pad-y: clamp(38px, 5vw, 62px);
  --accounting-section-pad-x: clamp(20px, 3.2vw, 38px);
  --accounting-section-radius: 20px;
  --accounting-env-bleed-x: calc(50% - 50vw);
}

.accounting-page main {
  position: relative;
  overflow: hidden;
  padding-bottom: clamp(56px, 7vw, 88px);
}

.accounting-page main::before {
  content: "";
  position: absolute;
  inset: 430px max(-8vw, -90px) 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 13% 18%, rgba(5, 201, 255, .1), transparent 18rem),
    radial-gradient(circle at 86% 54%, rgba(155, 37, 255, .09), transparent 21rem),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, .24) 10%, transparent 24%, rgba(0, 0, 0, .18) 45%, transparent 62%, rgba(0, 0, 0, .24) 84%, transparent),
    repeating-linear-gradient(135deg, rgba(255,255,255,.025) 0 1px, transparent 1px 28px);
  opacity: .56;
  mask-image: linear-gradient(180deg, transparent, #000 9%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 9%, #000 92%, transparent);
}

.accounting-page .container {
  position: relative;
  z-index: 1;
}

.accounting-page .container > section {
  position: relative;
  isolation: isolate;
  margin-bottom: 0 !important;
}

.accounting-page .container > section + section {
  margin-top: var(--accounting-section-gap) !important;
}

.accounting-page .accounting-hero {
  width: min(100%, var(--container-max)) !important;
  min-height: 374px;
  margin: clamp(8px, 2.4vw, 24px) auto 0 !important;
  display: grid;
  grid-template-columns: 48% 52%;
  align-items: start;
  overflow: hidden;
  animation: heroSettle .75s ease both;
}

.accounting-page .accounting-hero::before {
  content: "";
  position: absolute;
  inset: -2px 0 0;
  z-index: -2;
  background-image:
    linear-gradient(90deg, rgba(1, 7, 22, .98) 0%, rgba(1, 8, 25, .92) 30%, rgba(1, 7, 22, .62) 46%, rgba(1, 7, 22, .08) 63%, rgba(1, 7, 22, 0) 76%),
    linear-gradient(180deg, rgba(1, 7, 22, .08) 0%, rgba(1, 7, 22, 0) 63%, rgba(1, 7, 22, .88) 100%),
    url("../../asset/accounting-bookkeeping-hero.png");
  background-repeat: no-repeat;
  background-size: auto 130%;
  background-position: right top;
}

.accounting-page .accounting-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 92px;
  z-index: -1;
  background: linear-gradient(180deg, transparent, rgba(2, 8, 25, .96));
  box-shadow: 0 28px 52px rgba(0, 0, 0, .38);
}

.accounting-page .accounting-hero-copy {
  padding-top: 50px;
  position: relative;
  z-index: 3;
  animation: riseFade .7s ease .08s both;
}

.accounting-page .accounting-hero h1 {
  max-width: 540px;
  font-size: clamp(42px, 4.45vw, 53px);
  line-height: 1.04;
}

.accounting-page .accounting-visual {
  position: relative;
  min-height: 430px;
  overflow: visible;
  border-radius: 0;
  z-index: 2;
  animation: heroFloat 7s ease-in-out infinite;
}

.accounting-page .accounting-visual img,
.accounting-page .accounting-wave {
  display: none;
}

.accounting-page .service-intro,
.accounting-page .accounting-section,
.accounting-page .accounting-process,
.accounting-page .accounting-stats,
.accounting-page .acct-cta.cta-band {
  margin-left: auto !important;
  margin-right: auto !important;
}

.accounting-page .service-intro,
.accounting-page .accounting-section,
.accounting-page .accounting-stats,
.accounting-page .acct-cta.cta-band {
  width: min(100%, var(--container-max)) !important;
}

.accounting-page .accounting-process {
  width: min(100%, var(--container-max)) !important;
}

.accounting-page .service-intro,
.accounting-page .accounting-section,
.accounting-page .accounting-process {
  padding: var(--accounting-section-pad-y) var(--accounting-section-pad-x);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--accounting-section-radius);
  background:
    linear-gradient(145deg, rgba(3, 13, 36, .58), rgba(1, 7, 22, .54)),
    rgba(2, 8, 25, .3);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    inset 0 -1px 0 rgba(0, 201, 255, .035),
    0 28px 78px rgba(0, 0, 0, .28);
}

.accounting-page .service-intro {
  grid-template-columns: 58px 1fr;
}

.accounting-page .service-intro p,
.accounting-page .service-intro .round-icon {
  position: relative;
  z-index: 1;
}

.accounting-page .service-intro::before,
.accounting-page .service-intro::after,
.accounting-page .accounting-section::before,
.accounting-page .accounting-section::after,
.accounting-page .accounting-process::before,
.accounting-page .accounting-process::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: inherit;
}

.accounting-page .service-intro::before,
.accounting-page .accounting-section::before,
.accounting-page .accounting-process::before {
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse at 12% 18%, rgba(0, 204, 255, .18), transparent 24rem),
    radial-gradient(ellipse at 82% 52%, rgba(19, 83, 192, .18), transparent 30rem),
    linear-gradient(115deg, rgba(2, 22, 58, .76), rgba(1, 7, 22, .92) 58%, rgba(2, 8, 25, .86));
}

.accounting-page .service-intro::after,
.accounting-page .accounting-section::after,
.accounting-page .accounting-process::after {
  inset: 1px;
  z-index: -1;
  opacity: .9;
  mix-blend-mode: screen;
  background:
    radial-gradient(circle at 20% 24%, rgba(5, 201, 255, .3), transparent 12rem),
    radial-gradient(circle at 91% 82%, rgba(155, 37, 255, .16), transparent 18rem),
    linear-gradient(120deg, transparent 0 42%, rgba(255,255,255,.04) 42% 42.18%, transparent 42.18%),
    repeating-linear-gradient(120deg, rgba(255,255,255,.025) 0 1px, transparent 1px 32px);
  mask-image: linear-gradient(180deg, transparent, #000 9%, #000 91%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 9%, #000 91%, transparent);
}

.accounting-page .accounting-section h2,
.accounting-page .accounting-process h2,
.accounting-page .acct-cta h2 {
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.16;
  letter-spacing: 0;
}

.accounting-page .accounting-section h2,
.accounting-page .accounting-process h2 {
  margin-bottom: clamp(22px, 3vw, 34px);
}

.accounting-page .service-grid,
.accounting-page .testimonial-grid {
  gap: clamp(18px, 2vw, 24px);
}

.accounting-page .accounting-process .process-grid {
  padding-top: 6px;
  z-index: 2;
}

.accounting-page .accounting-process .process-line {
  top: calc(var(--accounting-section-pad-y) + 104px);
}

.accounting-page .service-card,
.accounting-page .quote-card {
  border-color: rgba(255,255,255,.09);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.075),
    0 18px 45px rgba(0, 0, 0, .3),
    0 0 26px rgba(0, 151, 255, .08);
}

.accounting-page .accounting-card-grid .service-card {
  min-height: 196px;
  padding: 28px 26px 18px;
}

.accounting-page .included-panel,
.accounting-page .choose-panel,
.accounting-page .accounting-section h2,
.accounting-page .accounting-process h2,
.accounting-page .service-grid,
.accounting-page .testimonial-grid,
.accounting-page .process-grid {
  position: relative;
  z-index: 1;
}

.accounting-page .accounting-process .process-line {
  position: absolute;
  z-index: 1;
}

.accounting-page .choose-panel .round-icon img {
  width: 1em;
  height: 1em;
  display: block;
  object-fit: contain;
}

.accounting-page .accounting-stats {
  margin-bottom: 0;
  padding: clamp(18px, 2.6vw, 25px) clamp(22px, 3vw, 34px);
  outline: 1px solid rgba(255,255,255,.1);
  outline-offset: 10px;

  box-shadow:
    0 24px 65px rgba(0, 0, 0, .34),
    0 0 44px rgba(25, 121, 255, .24),
    inset 0 1px 0 rgba(255,255,255,.18);
}

.accounting-page .acct-cta.cta-band {
  margin-bottom: 0;
  outline: 1px solid rgba(255,255,255,.1);
  outline-offset: 10px;
  border-color: rgba(54, 202, 255, .5);
 
  box-shadow:
    0 30px 80px rgba(0, 0, 0, .36),
    0 0 54px rgba(5, 201, 255, .24),
    0 0 120px rgba(155, 37, 255, .12),
    inset 0 1px 0 rgba(255,255,255,.13),
    inset 0 0 46px rgba(5, 201, 255, .05);
}

@media (max-width: 980px) {
  .accounting-page {
    --accounting-section-gap: clamp(54px, 8vw, 74px);
  }

  .accounting-page .accounting-hero,
  .accounting-page .service-intro,
  .accounting-page .accounting-section,
  .accounting-page .accounting-process,
  .accounting-page .accounting-stats,
  .accounting-page .acct-cta.cta-band {
    width: min(100% - 36px, 720px) !important;
  }

  .accounting-page .accounting-hero {
    grid-template-columns: 1fr;
    min-height: clamp(480px, 70vw, 590px);
    padding: 42px 0 54px;
    align-items: start;
    border-radius: 0 0 18px 18px;
    background:
      radial-gradient(circle at 88% 78%, rgba(5, 201, 255, .22), transparent 14rem),
      radial-gradient(circle at 76% 34%, rgba(155, 37, 255, .12), transparent 16rem);
  }

  .accounting-page .accounting-hero::before {
    inset: -18px 0 -24px;
    background-image: url("../../asset/accounting-bookkeeping-hero.png");
    background-size: auto 104%;
    background-position: right -12px bottom;
    opacity: .58;
    filter: saturate(1.1) contrast(1.04);
    mask-image: radial-gradient(ellipse at 82% 70%, #000 0%, #000 46%, rgba(0, 0, 0, .72) 62%, transparent 88%);
    -webkit-mask-image: radial-gradient(ellipse at 82% 70%, #000 0%, #000 46%, rgba(0, 0, 0, .72) 62%, transparent 88%);
  }

  .accounting-page .accounting-hero::after {
    inset: -18px 0 -1px;
    height: auto;
    background:
      linear-gradient(90deg, rgba(1, 7, 22, .98) 0%, rgba(1, 7, 22, .94) 42%, rgba(1, 7, 22, .54) 68%, rgba(1, 7, 22, .1) 100%),
      linear-gradient(180deg, rgba(1, 7, 22, .98) 0%, rgba(1, 7, 22, .86) 46%, rgba(1, 7, 22, .5) 70%, rgba(2, 8, 25, .98) 100%),
      radial-gradient(circle at 92% 78%, rgba(0, 199, 255, .2), transparent 16rem);
  }

  .accounting-page .accounting-hero-copy {
    max-width: 650px;
    padding-top: 0;
  }

  .accounting-page .accounting-visual {
    position: absolute;
    inset: auto 0 0 auto;
    width: min(48vw, 320px);
    min-height: 0;
    height: 45%;
    margin-top: 0;
    pointer-events: none;
    opacity: .24;
    filter: blur(1px);
    animation: none;
  }

  .accounting-page .service-card,
  .accounting-page .quote-card {
    padding: 24px;
  }
}

@media (max-width: 620px) {
  .accounting-page {
    --accounting-section-gap: 58px;
  }

  .accounting-page main {
    padding-bottom: 60px;
  }

  .accounting-page .accounting-hero {
    min-height: 590px;
    padding: 34px 0 48px;
    background:
      radial-gradient(circle at 91% 73%, rgba(5, 201, 255, .28), transparent 11.5rem),
      radial-gradient(circle at 76% 35%, rgba(155, 37, 255, .18), transparent 12rem),
      linear-gradient(180deg, rgba(2, 8, 25, .2), rgba(2, 8, 25, 0));
  }

  .accounting-page .accounting-hero,
  .accounting-page .service-intro,
  .accounting-page .accounting-section,
  .accounting-page .accounting-process,
  .accounting-page .accounting-stats,
  .accounting-page .acct-cta.cta-band {
    width: 100% !important;
  }

  .accounting-page .accounting-hero::before {
    inset: -14px 0 -18px;
    background-image: url("../../asset/accounting-bookkeeping-hero.png");
    background-size: auto 90%;
    background-position: 68% bottom;
    opacity: .86;
    filter: saturate(1.18) contrast(1.08) brightness(1.18) drop-shadow(0 26px 42px rgba(0, 0, 0, .34));
    transform: translate3d(0, 0, 0);
    mask-image:
      linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, .82) 30%, #000 58%, rgba(0, 0, 0, .82) 83%, transparent 100%),
      radial-gradient(ellipse at 86% 69%, #000 0%, #000 48%, rgba(0, 0, 0, .78) 65%, transparent 92%);
    -webkit-mask-image:
      linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, .82) 30%, #000 58%, rgba(0, 0, 0, .82) 83%, transparent 100%),
      radial-gradient(ellipse at 86% 69%, #000 0%, #000 48%, rgba(0, 0, 0, .78) 65%, transparent 92%);
    mask-composite: intersect;
    -webkit-mask-composite: source-in;
  }

  .accounting-page .accounting-hero::after {
    inset: -14px 0 -1px;
    height: auto;
    background:
      linear-gradient(90deg, rgba(1, 7, 22, .99) 0%, rgba(1, 7, 22, .93) 44%, rgba(1, 7, 22, .24) 72%, rgba(1, 7, 22, 0) 100%),
      linear-gradient(180deg, rgba(1, 7, 22, .99) 0%, rgba(1, 7, 22, .82) 42%, rgba(1, 7, 22, .12) 69%, #020819 100%),
      radial-gradient(circle at 93% 74%, rgba(5, 201, 255, .3), transparent 12rem);
  }

  .accounting-page .accounting-hero h1 {
    font-size: clamp(38px, 11.4vw, 46px);
    line-height: 1.03;
  }

  .accounting-page .mini-proof {
    width: min(100%, 340px);
    gap: 10px 12px;
    font-size: 11px;
  }

  .accounting-page .hero-subtitle {
    width: min(100%, 318px);
    margin: 16px 0 22px;
    font-size: 16px;
    line-height: 1.65;
  }

  .accounting-page .hero-buttons {
    width: min(100%, 340px);
    gap: 12px;
  }

  .accounting-page .hero-buttons .btn {
    min-height: 50px;
  }

  .accounting-page .accounting-section h2,
  .accounting-page .accounting-process h2,
  .accounting-page .acct-cta h2 {
    font-size: clamp(23px, 6.8vw, 30px);
    max-width: 100%;
    overflow-wrap: break-word;
    text-wrap: balance;
  }

  .accounting-page .service-card,
  .accounting-page .quote-card {
    padding: 22px 20px;
  }

  .accounting-page .acct-cta {
    padding: 28px 22px;
  }
}

/* RA page - homepage-aligned layout */
.ra-page {
  --ra-section-gap: clamp(46px, 7vw, 82px);
}

/* Hero copy vertical alignment */
.ra-page .ra-hero-copy {
  padding-top: 50px;
}

/* H1 accent span - match homepage cyan system */
.ra-page .ra-hero h1 span {
  color: var(--cyan);
  text-shadow: 0 0 24px rgba(0, 179, 255, .16);
}

/* Section spacing - match homepage vertical rhythm */
.ra-page .ra-need {
  margin-top: 24px;
}
.ra-page .ra-included {
  margin-top: var(--ra-section-gap);
}
.ra-page .ra-process {
  margin-top: var(--ra-section-gap);
}
.ra-page .ra-price-card {
  margin-top: var(--ra-section-gap);
}
.ra-page .ra-lower-grid {
  margin-top: var(--ra-section-gap);
}
.ra-page .cta-band.ra-cta {
  margin-top: var(--ra-section-gap);
}

/* Section headings - match homepage typographic scale */
.ra-page .ra-need-copy h2,
.ra-page .ra-included h2,
.ra-page .ra-process h2,
.ra-page .ra-price-card h2,
.ra-page .ra-faq h2,
.ra-page .ra-testimonials h2 {
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.1;
  margin-bottom: clamp(16px, 2vw, 22px);
}

/* Body copy - match homepage readability standards */
.ra-page .ra-need-copy p {
  font-size: 16px;
  line-height: 1.75;
}

.ra-page .ra-check-list {
  font-size: 14px;
  line-height: 1.95;
}

.ra-page .ra-mini-card h3 {
  font-size: 14px;
}

.ra-page .ra-mini-card p {
  font-size: 12px;
  line-height: 1.6;
}

.ra-page .ra-process-grid h3 {
  font-size: 14px;
}

.ra-page .ra-process-grid p {
  font-size: 12px;
  line-height: 1.5;
}

.ra-page .ra-faq summary {
  font-size: 14px;
  min-height: 44px;
}

.ra-page .ra-faq p {
  font-size: 13px;
  line-height: 1.7;
}

@media (max-width: 980px) {
  .ra-page {
    --ra-section-gap: clamp(54px, 8vw, 74px);
  }

  .ra-page .ra-hero-copy {
    padding-top: 0;
  }
}

@media (max-width: 620px) {
  .ra-page {
    --ra-section-gap: 58px;
  }

  .ra-page main {
    padding-bottom: 60px;
  }

  .ra-page .ra-need {
    margin-top: 16px;
  }
}

/* BOI page - homepage-aligned layout */
.boi-page {
  --boi-section-gap: clamp(46px, 7vw, 82px);
}

.boi-page main {
  position: relative;
  overflow: hidden;
  padding-bottom: clamp(56px, 7vw, 88px);
}

.boi-page .container {
  position: relative;
  z-index: 1;
}

.boi-page .container > section {
  position: relative;
  isolation: isolate;
  margin-bottom: 0 !important;
}

.boi-page .container > section + section {
  margin-top: var(--boi-section-gap) !important;
}

/* Hero - boi-filing-hero.png via background-image, same as accounting/US LLC approach */
.boi-page .boi-hero {
  width: min(100%, var(--container-max)) !important;
  min-height: 374px;
  margin: clamp(8px, 2.4vw, 24px) auto 0 !important;
  overflow: hidden;
  animation: heroSettle .75s ease both;
}

.boi-page .boi-hero::before {
  inset: -2px 0 0;
  background-image:
    linear-gradient(90deg, rgba(1, 7, 22, .98) 0%, rgba(1, 8, 25, .92) 30%, rgba(1, 7, 22, .62) 46%, rgba(1, 7, 22, .08) 63%, rgba(1, 7, 22, 0) 76%),
    linear-gradient(180deg, rgba(1, 7, 22, .08) 0%, rgba(1, 7, 22, 0) 63%, rgba(1, 7, 22, .88) 100%),
    url("../../asset/boi-filing-hero.png");
  background-repeat: no-repeat;
  background-size: auto 130%;
  background-position: right top;
}

.boi-page .boi-hero::after {
  inset: auto 0 0;
  height: 92px;
  z-index: -1;
  background: linear-gradient(180deg, transparent, rgba(2, 8, 25, .96));
  box-shadow: 0 28px 52px rgba(0, 0, 0, .38);
}

.boi-page .boi-hero-copy {
  padding-top: 50px;
  animation: riseFade .7s ease .08s both;
}

.boi-page .boi-hero-visual {
  min-height: 430px;
  overflow: visible;
  z-index: 2;
  animation: heroFloat 7s ease-in-out infinite;
}

.boi-page .boi-hero-visual img {
  display: none;
}

/* All sections - uniform 1080px width matching header */
.boi-page .boi-overview,
.boi-page .boi-section,
.boi-page .boi-documents,
.boi-page .boi-process,
.boi-page .boi-benefits,
.boi-page .boi-package,
.boi-page .boi-why,
.boi-page .boi-lower-grid,
.boi-page .cta-band.boi-cta {
  width: min(100%, var(--container-max)) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Section headings - match homepage typographic scale */
.boi-page .boi-overview h2,
.boi-page .boi-documents h2,
.boi-page .boi-section h2,
.boi-page .boi-process h2,
.boi-page .boi-benefits h2,
.boi-page .boi-package h2,
.boi-page .boi-why h2,
.boi-page .boi-faq h2,
.boi-page .boi-testimonials h2 {
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.1;
  margin-bottom: clamp(16px, 2vw, 22px);
}

/* Body copy - match homepage readability */
.boi-page .boi-overview p,
.boi-page .boi-documents p {
  font-size: 16px;
  line-height: 1.75;
  color: #e8f2ff;
}

@media (max-width: 980px) {
  .boi-page {
    --boi-section-gap: clamp(54px, 8vw, 74px);
  }

  .boi-page .boi-hero {
    grid-template-columns: 1fr;
    min-height: clamp(480px, 70vw, 590px);
    padding: 42px 0 54px;
    align-items: start;
    border-radius: 0 0 18px 18px;
    background:
      radial-gradient(circle at 88% 78%, rgba(10, 103, 255, .22), transparent 14rem),
      radial-gradient(circle at 76% 34%, rgba(0, 136, 255, .12), transparent 16rem);
  }

  .boi-page .boi-hero::before {
    inset: -18px 0 -24px;
    background-image: url("../../asset/boi-filing-hero.png");
    background-size: auto 104%;
    background-position: right -12px bottom;
    opacity: .58;
    filter: saturate(1.1) contrast(1.04);
    mask-image: radial-gradient(ellipse at 82% 70%, #000 0%, #000 46%, rgba(0, 0, 0, .72) 62%, transparent 88%);
    -webkit-mask-image: radial-gradient(ellipse at 82% 70%, #000 0%, #000 46%, rgba(0, 0, 0, .72) 62%, transparent 88%);
  }

  .boi-page .boi-hero::after {
    inset: -18px 0 -1px;
    height: auto;
    background:
      linear-gradient(90deg, rgba(1, 7, 22, .98) 0%, rgba(1, 7, 22, .94) 42%, rgba(1, 7, 22, .54) 68%, rgba(1, 7, 22, .1) 100%),
      linear-gradient(180deg, rgba(1, 7, 22, .98) 0%, rgba(1, 7, 22, .86) 46%, rgba(1, 7, 22, .5) 70%, rgba(2, 8, 25, .98) 100%),
      radial-gradient(circle at 92% 78%, rgba(10, 103, 255, .2), transparent 16rem);
  }

  .boi-page .boi-hero-copy {
    max-width: 650px;
    padding-top: 0;
  }

  .boi-page .boi-hero-visual {
    position: absolute;
    inset: auto 0 0 auto;
    width: min(48vw, 320px);
    min-height: 0;
    height: 45%;
    pointer-events: none;
    opacity: 0;
    animation: none;
  }

  .boi-page .boi-hero,
  .boi-page .boi-overview,
  .boi-page .boi-section,
  .boi-page .boi-documents,
  .boi-page .boi-process,
  .boi-page .boi-benefits,
  .boi-page .boi-package,
  .boi-page .boi-why,
  .boi-page .boi-lower-grid,
  .boi-page .cta-band.boi-cta {
    width: min(100% - 36px, 720px) !important;
  }
}

@media (max-width: 620px) {
  .boi-page {
    --boi-section-gap: 58px;
  }

  .boi-page main {
    padding-bottom: 60px;
  }

  .boi-page .boi-hero {
    min-height: 590px;
    padding: 34px 0 48px;
    background:
      radial-gradient(circle at 91% 73%, rgba(10, 103, 255, .28), transparent 11.5rem),
      radial-gradient(circle at 76% 35%, rgba(0, 136, 255, .18), transparent 12rem),
      linear-gradient(180deg, rgba(2, 8, 25, .2), rgba(2, 8, 25, 0));
  }

  .boi-page .boi-hero::before {
    inset: -14px 0 -18px;
    background-image: url("../../asset/boi-filing-hero.png");
    background-size: auto 90%;
    background-position: 68% bottom;
    opacity: .86;
    filter: saturate(1.18) contrast(1.08) brightness(1.18) drop-shadow(0 26px 42px rgba(0, 0, 0, .34));
    transform: translate3d(0, 0, 0);
    mask-image:
      linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, .82) 30%, #000 58%, rgba(0, 0, 0, .82) 83%, transparent 100%),
      radial-gradient(ellipse at 86% 69%, #000 0%, #000 48%, rgba(0, 0, 0, .78) 65%, transparent 92%);
    -webkit-mask-image:
      linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, .82) 30%, #000 58%, rgba(0, 0, 0, .82) 83%, transparent 100%),
      radial-gradient(ellipse at 86% 69%, #000 0%, #000 48%, rgba(0, 0, 0, .78) 65%, transparent 92%);
    mask-composite: intersect;
    -webkit-mask-composite: source-in;
  }

  .boi-page .boi-hero::after {
    inset: -14px 0 -1px;
    height: auto;
    background:
      linear-gradient(90deg, rgba(1, 7, 22, .99) 0%, rgba(1, 7, 22, .93) 44%, rgba(1, 7, 22, .24) 72%, rgba(1, 7, 22, 0) 100%),
      linear-gradient(180deg, rgba(1, 7, 22, .99) 0%, rgba(1, 7, 22, .82) 42%, rgba(1, 7, 22, .12) 69%, #020819 100%),
      radial-gradient(circle at 93% 74%, rgba(10, 103, 255, .3), transparent 12rem);
  }

  .boi-page .boi-hero,
  .boi-page .boi-overview,
  .boi-page .boi-section,
  .boi-page .boi-documents,
  .boi-page .boi-process,
  .boi-page .boi-benefits,
  .boi-page .boi-package,
  .boi-page .boi-why,
  .boi-page .boi-lower-grid,
  .boi-page .cta-band.boi-cta {
    width: 100% !important;
  }

  .boi-page .hero-subtitle {
    width: min(100%, 318px);
    margin: 16px 0 22px;
    font-size: 16px;
    line-height: 1.65;
  }

  .boi-page .hero-buttons {
    width: min(100%, 340px);
    gap: 12px;
  }

  .boi-page .hero-buttons .btn {
    min-height: 50px;
  }
}

/* ================================================================
   ADDR PAGE: Homepage-style section layout, rhythm & hero mobile
   ================================================================ */

.addr-page-shell {
  --addr-section-gap: clamp(48px, 7vw, 72px);
  --addr-section-pad-y: clamp(36px, 5vw, 56px);
  --addr-section-pad-x: clamp(22px, 3.2vw, 38px);
  --addr-section-radius: 20px;
}

.addr-main {
  padding-bottom: clamp(56px, 7vw, 88px);
}

.addr-main .container > section {
  position: relative;
  isolation: isolate;
  margin-bottom: 0 !important;
}

.addr-main .container > section + section {
  margin-top: var(--addr-section-gap) !important;
}

.addr-page-shell .addr-hero {
  margin-top: clamp(8px, 2.4vw, 24px) !important;
  overflow: hidden;
}

/* BOX sections: addr-included, addr-perfect - width-constrained card */
.addr-page-shell .addr-included,
.addr-page-shell .addr-perfect {
  width: min(100% - 96px, var(--container-narrow-max)) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: var(--addr-section-pad-y) var(--addr-section-pad-x) !important;
  border-radius: var(--addr-section-radius) !important;
  border: 1px solid rgba(58, 110, 230, .22) !important;
  background:
    radial-gradient(ellipse at 14% 16%, rgba(68, 102, 255, .17), transparent 20rem),
    radial-gradient(ellipse at 86% 78%, rgba(10, 140, 255, .13), transparent 18rem),
    linear-gradient(145deg, rgba(4, 18, 52, .78), rgba(2, 10, 30, .74)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    inset 0 -1px 0 rgba(79, 166, 255, .035),
    0 28px 78px rgba(0, 0, 0, .28) !important;
}

.addr-page-shell .addr-included::before,
.addr-page-shell .addr-perfect::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  pointer-events: none;
  opacity: .9;
  mix-blend-mode: screen;
  background:
    radial-gradient(circle at 10% 12%, rgba(5, 198, 255, .28), transparent 14rem),
    radial-gradient(circle at 88% 82%, rgba(110, 64, 255, .15), transparent 18rem),
    repeating-linear-gradient(118deg, rgba(255,255,255,.022) 0 1px, transparent 1px 30px);
  mask-image: linear-gradient(180deg, transparent, #000 9%, #000 91%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 9%, #000 91%, transparent);
}

/* FULL-WIDTH CTA: addr-ready - vivid accent like homepage cta-band */
.addr-page-shell .addr-ready {
  border-radius: var(--addr-section-radius) !important;
  outline: 1px solid rgba(255,255,255,.12);
  outline-offset: 10px;
  border-color: rgba(54, 190, 255, .55) !important;
  background:
    radial-gradient(circle at 14% 50%, rgba(74, 218, 255, .66), transparent 9rem),
    linear-gradient(100deg, #09caff 0%, #054bed 50%, #18037a 100%) !important;
  box-shadow:
    0 24px 66px rgba(0, 0, 0, .36),
    0 0 44px rgba(5, 192, 255, .22),
    inset 0 1px 0 rgba(255,255,255,.18) !important;
}

.addr-page-shell .addr-ready::before {
  content: "";
  position: absolute;
  inset: -32% -8%;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 22% 52%, rgba(255,255,255,.22), transparent 16rem),
    radial-gradient(ellipse at 84% 44%, rgba(5, 201, 255, .14), transparent 12rem),
    repeating-linear-gradient(114deg, rgba(255,255,255,.12) 0 1px, transparent 1px 26px);
  opacity: .3;
  border-radius: inherit;
}

.addr-page-shell .addr-ready > * {
  position: relative;
  z-index: 1;
}

/* Mobile hero: image goes behind text */
@media (max-width: 980px) {

  .addr-page-shell .addr-hero {
    position: relative;
    grid-template-columns: 1fr !important;
    min-height: clamp(530px, 78vw, 640px);
    padding: 42px 0 48px;
    align-items: start;
    overflow: hidden;
    border-bottom: none !important;
  }

  .addr-page-shell .addr-panel {
    position: absolute !important;
    top: 0 !important;
    right: -6% !important;
    bottom: 0 !important;
    left: 34% !important;
    width: auto !important;
    min-height: 0 !important;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
    opacity: .42;
    filter: saturate(1.12) contrast(1.04);
    mask-image:
      radial-gradient(ellipse at 80% 50%, #000 0%, rgba(0,0,0,.78) 36%, rgba(0,0,0,.44) 56%, transparent 86%),
      linear-gradient(180deg, transparent 0%, rgba(0,0,0,.8) 16%, #000 46%, rgba(0,0,0,.8) 82%, transparent 100%);
    -webkit-mask-image:
      radial-gradient(ellipse at 80% 50%, #000 0%, rgba(0,0,0,.78) 36%, rgba(0,0,0,.44) 56%, transparent 86%),
      linear-gradient(180deg, transparent 0%, rgba(0,0,0,.8) 16%, #000 46%, rgba(0,0,0,.8) 82%, transparent 100%);
    mask-composite: intersect;
    -webkit-mask-composite: source-in;
  }

  .addr-page-shell .addr-panel-image {
    width: auto !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: contain;
    object-position: right center;
  }

  .addr-page-shell .addr-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
      linear-gradient(90deg, rgba(3,8,22,.97) 0%, rgba(3,8,22,.92) 42%, rgba(3,8,22,.58) 68%, rgba(3,8,22,.1) 100%),
      linear-gradient(180deg, rgba(3,8,22,.88) 0%, rgba(3,8,22,.52) 42%, rgba(3,8,22,.14) 68%, rgba(3,8,22,.88) 100%);
  }

  .addr-page-shell .addr-copy {
    position: relative;
    z-index: 2;
    padding-left: 0;
  }

  .addr-page-shell .addr-included,
  .addr-page-shell .addr-perfect {
    width: min(100% - 36px, 720px) !important;
  }

  .addr-page-shell .addr-ready {
    grid-template-columns: 78px 1fr !important;
    padding: 26px var(--addr-section-pad-x) !important;
  }
}

@media (max-width: 620px) {
  .addr-page-shell .addr-hero {
    min-height: 570px;
    padding: 32px 0 44px;
  }

  .addr-page-shell .addr-hero::after {
    background:
      linear-gradient(90deg, rgba(3,8,22,.99) 0%, rgba(3,8,22,.94) 44%, rgba(3,8,22,.28) 70%, transparent 100%),
      linear-gradient(180deg, rgba(3,8,22,.99) 0%, rgba(3,8,22,.82) 40%, rgba(3,8,22,.14) 68%, #020b1e 100%);
  }

  .addr-page-shell .addr-included,
  .addr-page-shell .addr-perfect {
    width: 100% !important;
    border-radius: 14px !important;
  }

  .addr-page-shell .addr-ready {
    grid-template-columns: 1fr !important;
    border-radius: 14px !important;
    padding: 24px 20px !important;
    text-align: center;
    justify-items: center;
  }
}


/* ================================================================
   BANK PAGE: Homepage-style section layout, rhythm & hero mobile
   ================================================================ */

.bank-page-shell {
  --bank-section-gap: clamp(48px, 7vw, 72px);
  --bank-section-pad-y: clamp(36px, 5vw, 56px);
  --bank-section-pad-x: clamp(22px, 3.2vw, 38px);
  --bank-section-radius: 20px;
}

.bank-main {
  padding-bottom: clamp(56px, 7vw, 88px);
}

.bank-main .container > section {
  position: relative;
  isolation: isolate;
  margin-bottom: 0 !important;
}

.bank-main .container > section + section {
  margin-top: var(--bank-section-gap) !important;
}

.bank-page-shell .bank-hero {
  margin-top: clamp(8px, 2.4vw, 24px) !important;
  overflow: visible;
}

/* BOX sections: width-constrained, centered, rounded */
.bank-page-shell .bank-matters,
.bank-page-shell .bank-partners,
.bank-page-shell .bank-process,
.bank-page-shell .bank-vs,
.bank-page-shell .bank-choose,
.bank-page-shell .bank-price,
.bank-page-shell .bank-clients {
  width: min(100% - 96px, var(--container-narrow-max)) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  border-radius: var(--bank-section-radius) !important;
}

.bank-page-shell .bank-matters,
.bank-page-shell .bank-partners,
.bank-page-shell .bank-process,
.bank-page-shell .bank-choose {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.07),
    inset 0 -1px 0 rgba(0, 190, 255, .03),
    0 28px 78px rgba(0, 0, 0, .30) !important;
}

/* FULL-WIDTH accent: bank-requirements - vivid mid-page standout */
.bank-page-shell .bank-requirements {
  border-radius: var(--bank-section-radius) !important;
  outline: 1px solid rgba(255,255,255,.1);
  outline-offset: 10px;
  border-color: rgba(54, 190, 255, .55) !important;
  background:
    radial-gradient(circle at 14% 50%, rgba(74, 218, 255, .55), transparent 9rem),
    radial-gradient(circle at 82% 30%, rgba(5, 148, 255, .28), transparent 18rem),
    linear-gradient(110deg, #083ea8 0%, #041e66 50%, #0d0346 100%) !important;
  box-shadow:
    0 24px 66px rgba(0, 0, 0, .38),
    0 0 44px rgba(5, 150, 255, .24),
    inset 0 1px 0 rgba(255,255,255,.16) !important;
}

.bank-page-shell .bank-requirements::before {
  content: "";
  position: absolute;
  inset: -30% -8%;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 52%, rgba(255,255,255,.18), transparent 15rem),
    repeating-linear-gradient(114deg, rgba(255,255,255,.1) 0 1px, transparent 1px 24px);
  opacity: .32;
  border-radius: inherit;
}

.bank-page-shell .bank-requirements > * {
  position: relative;
  z-index: 1;
}

/* FULL-WIDTH CTA at end: bank-final-grid */
.bank-page-shell .bank-final-grid {
  border-radius: var(--bank-section-radius) !important;
  outline: 1px solid rgba(255,255,255,.1);
  outline-offset: 10px;
  border: 1px solid rgba(44, 120, 210, .38) !important;
  background:
    radial-gradient(circle at 10% 50%, rgba(5, 201, 255, .16), transparent 18rem),
    radial-gradient(circle at 88% 28%, rgba(0, 134, 255, .12), transparent 22rem),
    linear-gradient(145deg, rgba(4, 18, 52, .96), rgba(2, 8, 30, .98)) !important;
  box-shadow:
    0 28px 78px rgba(0, 0, 0, .34),
    0 0 44px rgba(5, 150, 255, .18),
    inset 0 1px 0 rgba(255,255,255,.08) !important;
  padding: clamp(26px, 3.6vw, 40px) clamp(18px, 2.6vw, 30px) !important;
}

.bank-page-shell .bank-final-grid::before {
  content: "";
  position: absolute;
  inset: -28% -8%;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 22% 50%, rgba(5, 201, 255, .14), transparent 16rem),
    repeating-linear-gradient(112deg, rgba(255,255,255,.08) 0 1px, transparent 1px 24px);
  opacity: .35;
  border-radius: inherit;
}

.bank-page-shell .bank-final-grid > * {
  position: relative;
  z-index: 1;
}

/* Mobile hero: art goes behind text */
@media (max-width: 980px) {

  .bank-page-shell .bank-hero {
    position: relative;
    display: grid !important;
    grid-template-columns: 1fr !important;
    min-height: clamp(540px, 78vw, 660px) !important;
    padding-top: 42px !important;
    align-items: start;
    overflow: hidden !important;
  }

  .bank-page-shell .bank-hero-art {
    position: absolute !important;
    top: 0 !important;
    right: -6% !important;
    bottom: 0 !important;
    left: 0 !important;
    min-height: 0 !important;
    z-index: 0;
    opacity: .42;
    filter: saturate(1.1);
    mask-image:
      radial-gradient(ellipse at 78% 50%, #000 0%, rgba(0,0,0,.7) 38%, rgba(0,0,0,.36) 58%, transparent 86%),
      linear-gradient(180deg, transparent 0%, rgba(0,0,0,.74) 14%, #000 44%, rgba(0,0,0,.74) 82%, transparent 100%);
    -webkit-mask-image:
      radial-gradient(ellipse at 78% 50%, #000 0%, rgba(0,0,0,.7) 38%, rgba(0,0,0,.36) 58%, transparent 86%),
      linear-gradient(180deg, transparent 0%, rgba(0,0,0,.74) 14%, #000 44%, rgba(0,0,0,.74) 82%, transparent 100%);
    mask-composite: intersect;
    -webkit-mask-composite: source-in;
  }

  .bank-page-shell .bank-hero-scene {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: right center !important;
  }

  .bank-page-shell .bank-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
      linear-gradient(90deg, rgba(1,7,22,.97) 0%, rgba(1,7,22,.92) 42%, rgba(1,7,22,.56) 68%, rgba(1,7,22,.1) 100%),
      linear-gradient(180deg, rgba(1,7,22,.88) 0%, rgba(1,7,22,.5) 42%, rgba(1,7,22,.14) 68%, rgba(1,7,22,.88) 100%);
  }

  .bank-page-shell .bank-copy {
    position: relative;
    z-index: 2;
  }

  .bank-page-shell .bank-matters,
  .bank-page-shell .bank-partners,
  .bank-page-shell .bank-process,
  .bank-page-shell .bank-vs,
  .bank-page-shell .bank-choose,
  .bank-page-shell .bank-price,
  .bank-page-shell .bank-clients {
    width: min(100% - 36px, 720px) !important;
  }

  .bank-page-shell .bank-cta {
    padding-right: clamp(180px, 22vw, 220px) !important;
  }
}

@media (max-width: 620px) {
  .bank-page-shell .bank-hero {
    min-height: 560px;
    padding-top: 30px !important;
  }

  .bank-page-shell .bank-hero::after {
    background:
      linear-gradient(90deg, rgba(1,7,22,.99) 0%, rgba(1,7,22,.93) 44%, rgba(1,7,22,.24) 70%, transparent 100%),
      linear-gradient(180deg, rgba(1,7,22,.99) 0%, rgba(1,7,22,.82) 40%, rgba(1,7,22,.14) 68%, #020819 100%);
  }

  .bank-page-shell .bank-matters,
  .bank-page-shell .bank-partners,
  .bank-page-shell .bank-process,
  .bank-page-shell .bank-vs,
  .bank-page-shell .bank-choose,
  .bank-page-shell .bank-price,
  .bank-page-shell .bank-clients {
    width: 100% !important;
    border-radius: 14px !important;
  }

  .bank-page-shell .bank-requirements,
  .bank-page-shell .bank-final-grid {
    border-radius: 14px !important;
  }

  .bank-page-shell .bank-final-grid {
    padding: 20px !important;
  }

  /* The 980px breakpoint above reserves padding-right for the desktop
     side-by-side globe graphic; at this width .bank-cta switches to a
     centered flex column (see business-bank-account.css) so that
     reserved space must be released, or the !important there squeezes
     the heading/paragraph into a narrow column and wraps them badly. */
  .bank-page-shell .bank-cta {
    padding-right: 24px !important;
  }
}

/* ================================================================
   BANK VS: Give it a visible box background so it's a proper section
   ================================================================ */

.bank-page-shell .bank-vs {
  background:
    radial-gradient(circle at 50% 0, rgba(0, 104, 255, .13), transparent 18rem),
    linear-gradient(135deg, rgba(4, 24, 64, .82), rgba(4, 12, 37, .78)) !important;
  border: 1px solid rgba(44, 118, 203, .46) !important;
  padding: 22px 24px 24px !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    0 22px 58px rgba(0, 0, 0, .28) !important;
}

/* ================================================================
   WIDTH CONSISTENCY: all box sections same max-width 1080px
   ================================================================ */

/* Unify all box sections to the same visual width */
.bank-page-shell .bank-matters,
.bank-page-shell .bank-partners,
.bank-page-shell .bank-process,
.bank-page-shell .bank-vs,
.bank-page-shell .bank-choose,
.bank-page-shell .bank-price,
.bank-page-shell .bank-clients {
  width: min(100% - 96px, var(--container-narrow-max)) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Full-width sections stay at 100% of container */
.bank-page-shell .bank-requirements,
.bank-page-shell .bank-final-grid {
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Addr page: same consistency */
.addr-page-shell .addr-included,
.addr-page-shell .addr-perfect {
  width: min(100% - 96px, var(--container-narrow-max)) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.addr-page-shell .addr-ready {
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* ================================================================
   TEXT SIZE IMPROVEMENTS — bank page inner content
   ================================================================ */

.bank-page-shell .bank-matters h2,
.bank-page-shell .bank-partners h2,
.bank-page-shell .bank-process h2,
.bank-page-shell .bank-choose h2,
.bank-page-shell .bank-clients h2,
.bank-page-shell .bank-faq h2 {
  font-size: clamp(19px, 2.2vw, 25px) !important;
  letter-spacing: 0;
}

.bank-page-shell .bank-rejected h2,
.bank-page-shell .bank-improves h2 {
  font-size: clamp(18px, 2vw, 22px) !important;
}

.bank-page-shell .bank-six-grid h3,
.bank-page-shell .bank-requirements h3 {
  font-size: 15px !important;
  line-height: 1.3;
}

.bank-page-shell .bank-six-grid p,
.bank-page-shell .bank-four-grid p {
  font-size: 13px !important;
  line-height: 1.55;
}

.bank-page-shell .bank-four-grid h3 {
  font-size: 14px !important;
}

.bank-page-shell .bank-process-grid h3 {
  font-size: 14px !important;
}

.bank-page-shell .bank-process-grid p {
  font-size: 12px !important;
  line-height: 1.5;
}

.bank-page-shell .bank-rejected ul,
.bank-page-shell .bank-improves ul,
.bank-page-shell .bank-price ul {
  font-size: 14px !important;
  line-height: 1.9;
}

.bank-page-shell .bank-faq summary {
  font-size: 13px !important;
  min-height: 32px;
}

.bank-page-shell .bank-faq p {
  font-size: 12px !important;
  line-height: 1.55;
}

.bank-page-shell .bank-partners span {
  font-size: 17px !important;
}

.bank-page-shell .bank-requirements h2 {
  font-size: clamp(18px, 2vw, 21px) !important;
}

.bank-page-shell .bank-cta h2 {
  font-size: clamp(23px, 2.6vw, 30px) !important;
}

.bank-page-shell .bank-cta p {
  font-size: 14px !important;
}

/* ================================================================
   TEXT SIZE IMPROVEMENTS — addr page inner content
   ================================================================ */

.addr-page-shell .addr-included h2,
.addr-page-shell .addr-perfect h2 {
  font-size: clamp(23px, 2.8vw, 30px) !important;
}

.addr-page-shell .addr-card-grid h3 {
  font-size: 16px !important;
  line-height: 1.28;
}

.addr-page-shell .addr-card-grid p {
  font-size: 14px !important;
  line-height: 1.65;
}

.addr-page-shell .addr-perfect h3 {
  font-size: 16px !important;
}

.addr-page-shell .addr-perfect p {
  font-size: 14px !important;
  line-height: 1.6;
}

.addr-page-shell .addr-ready-copy h2 {
  font-size: clamp(23px, 2.8vw, 32px) !important;
}

.addr-page-shell .addr-ready-copy p {
  font-size: 16px !important;
  line-height: 1.65;
}

.addr-page-shell .addr-ready-stat b {
  font-size: clamp(23px, 2.8vw, 32px) !important;
}

.addr-page-shell .addr-ready-stat span {
  font-size: 13px !important;
}

/* ================================================================
   SCROLL REVEAL ANIMATION STATES
   ================================================================ */

/* Section-level entrance: 3D perspective slide */
.ct-reveal-section {
  opacity: 0;
  transform: perspective(900px) translateY(48px) rotateX(4deg);
  transition:
    opacity 0.72s cubic-bezier(.22,.61,.36,1),
    transform 0.72s cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform;
}

.ct-reveal-section.ct-in {
  opacity: 1;
  transform: perspective(900px) translateY(0) rotateX(0);
}

/* Card-level entrance: clean slide + subtle scale */
.ct-reveal-card {
  opacity: 0;
  transform: translateY(32px) scale(0.97);
  transition:
    opacity 0.6s cubic-bezier(.22,.61,.36,1),
    transform 0.6s cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform;
}

.ct-reveal-card.ct-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Hero copy entrance */
.ct-reveal-hero {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s cubic-bezier(.22,.61,.36,1),
    transform 0.7s cubic-bezier(.22,.61,.36,1);
}

.ct-reveal-hero.ct-in {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger helpers (applied via JS) */
.ct-delay-1 { transition-delay: 0.08s !important; }
.ct-delay-2 { transition-delay: 0.16s !important; }
.ct-delay-3 { transition-delay: 0.24s !important; }
.ct-delay-4 { transition-delay: 0.32s !important; }
.ct-delay-5 { transition-delay: 0.40s !important; }
.ct-delay-6 { transition-delay: 0.48s !important; }

/* ================================================================
   3D HOVER EFFECTS — cards
   ================================================================ */

.addr-card-grid article,
.addr-perfect article,
.bank-six-grid article,
.bank-four-grid article {
  transition: transform 0.28s cubic-bezier(.2,.8,.2,1), box-shadow 0.28s ease !important;
}

/* Ripple glow on card hover */
.addr-card-grid article:hover,
.bank-six-grid article:hover,
.bank-four-grid article:hover {
  box-shadow:
    0 24px 54px rgba(0, 0, 0, .34),
    0 0 28px rgba(5, 195, 255, .2),
    inset 0 1px 0 rgba(255,255,255,.1) !important;
}

/* Full-width section subtle hover glow pulse */
.bank-page-shell .bank-requirements,
.bank-page-shell .bank-final-grid,
.addr-page-shell .addr-ready {
  transition: box-shadow 0.4s ease;
}

/* ================================================================
   PRICING CARD ANIMATION
   Reproduces uk-ltd-company.html's .uk-service-card hover exactly
   (see PRICING-CARD-ANIMATION-SPEC.md) on every single-tier "mini"
   pricing card embedded in an individual service page. (.price-card,
   the shared multi-tier grid component, is handled directly in
   pricing-shared.css instead, since it already had its own rule there.)

   Where the page already has a PAGE_SHELL_CONFIG entry, the card's
   selector was also added to that page's `tiltSel` in
   page-shell-config.js, so it gets the full mouse-tracking 3-D tilt
   from card-tilt.js on top of this CSS -- exactly like the reference.
   Pages with no existing config entry (.boi-package, .tax-price on
   us-tax-filing.html, .uk-director-price-band) intentionally get the
   CSS-only portion, since adding a brand-new config entry would also
   switch that whole page's other .glass-card elements from the plain
   .reveal fade to the .ct-reveal-* entrance system -- an unrelated,
   out-of-scope side effect (see PRICING-CARD-ANIMATION-SPEC.md §9/§10). */
.boi-page-shell .boi-package,
.bank-page-shell .bank-price,
.ein-page-shell .ein-price,
.ra-page-shell .ra-price-card,
.resale-page-shell .resale-price-card,
.tax-page-shell:not(.uk-tax-page-shell) .tax-price,
.dissolution-page-shell .dissolution-price,
.uk-tax-page-shell .uk-tax-price,
.uk-close-page-shell .uk-price-card,
.uk-address-page-shell .uk-price-card,
.uk-director-page-shell .uk-director-price-band {
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease, opacity .55s ease;
}

.boi-page-shell .boi-package:hover,
.bank-page-shell .bank-price:hover,
.ein-page-shell .ein-price:hover,
.ra-page-shell .ra-price-card:hover,
.resale-page-shell .resale-price-card:hover,
.tax-page-shell:not(.uk-tax-page-shell) .tax-price:hover,
.dissolution-page-shell .dissolution-price:hover,
.uk-tax-page-shell .uk-tax-price:hover,
.uk-close-page-shell .uk-price-card:hover,
.uk-address-page-shell .uk-price-card:hover,
.uk-director-page-shell .uk-director-price-band:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 190, 255, .5);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.1),
    0 24px 58px rgba(0, 0, 0, .34),
    0 0 30px rgba(0, 190, 255, .18);
}

/* itin-application.html and registered-agent-service.html's price cards
   use their own icon classes (not .round-icon); uk-director-price-band
   uses .round-icon directly. Same scale(1.1) treatment as the reference
   in every case. */
.itin-page-shell .itin-price-card:hover .package-icon,
.ra-page-shell .ra-price-card:hover .ra-package-icon,
.uk-director-page-shell .uk-director-price-band:hover .round-icon {
  transform: scale(1.1);
}

/* ================================================================
   MOBILE TEXT SIZE TWEAKS
   ================================================================ */

@media (max-width: 980px) {
  .bank-page-shell .bank-vs,
  .bank-page-shell .bank-price,
  .bank-page-shell .bank-clients {
    width: min(100% - 36px, 720px) !important;
  }

  .addr-page-shell .addr-included,
  .addr-page-shell .addr-perfect {
    width: min(100% - 36px, 720px) !important;
  }
}

@media (max-width: 620px) {
  .bank-page-shell .bank-vs,
  .bank-page-shell .bank-price,
  .bank-page-shell .bank-clients {
    width: 100% !important;
    border-radius: 14px !important;
  }

  .bank-page-shell .bank-six-grid h3 { font-size: 14px !important; }
  .bank-page-shell .bank-six-grid p  { font-size: 13px !important; }
  .bank-page-shell .bank-process-grid p { font-size: 12px !important; }

  .addr-page-shell .addr-included h2,
  .addr-page-shell .addr-perfect h2 {
    font-size: 23px !important;
  }
}

/* ================================================================
   REGISTERED AGENT PAGE: section layout, rhythm & hero mobile
   ================================================================ */

.ra-page-shell {
  --ra-section-gap: clamp(48px, 7vw, 72px);
  --ra-section-pad-y: clamp(36px, 5vw, 56px);
  --ra-section-pad-x: clamp(22px, 3.2vw, 38px);
  --ra-section-radius: 20px;
}

.ra-main {
  padding-bottom: clamp(56px, 7vw, 88px);
}

.ra-main .container > section {
  position: relative;
  isolation: isolate;
  margin-bottom: 0 !important;
}

.ra-main .container > section + section {
  margin-top: var(--ra-section-gap) !important;
}

.ra-page-shell .ra-hero {
  margin-top: clamp(8px, 2.4vw, 24px) !important;
  overflow: hidden;
}

/* BOX sections: ra-need, ra-included, ra-process, ra-faq, ra-testimonials */
.ra-page-shell .ra-need,
.ra-page-shell .ra-included,
.ra-page-shell .ra-process,
.ra-page-shell .ra-faq,
.ra-page-shell .ra-testimonials {
  width: min(100% - 96px, var(--container-narrow-max)) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: var(--ra-section-pad-y) var(--ra-section-pad-x) !important;
  border-radius: var(--ra-section-radius) !important;
  border: 1px solid rgba(58, 110, 230, .22) !important;
  background:
    radial-gradient(ellipse at 14% 16%, rgba(0, 106, 255, .16), transparent 20rem),
    radial-gradient(ellipse at 88% 78%, rgba(10, 140, 255, .1), transparent 18rem),
    linear-gradient(145deg, rgba(4, 18, 52, .78), rgba(2, 10, 30, .74)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    inset 0 -1px 0 rgba(79, 166, 255, .03),
    0 28px 78px rgba(0, 0, 0, .28) !important;
}

/* Ambient glow overlay for box sections */
.ra-page-shell .ra-need::before,
.ra-page-shell .ra-included::before,
.ra-page-shell .ra-process::before,
.ra-page-shell .ra-faq::before,
.ra-page-shell .ra-testimonials::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  pointer-events: none;
  opacity: .88;
  mix-blend-mode: screen;
  background:
    radial-gradient(circle at 10% 12%, rgba(5, 198, 255, .24), transparent 14rem),
    radial-gradient(circle at 88% 82%, rgba(60, 100, 255, .12), transparent 18rem),
    repeating-linear-gradient(118deg, rgba(255,255,255,.018) 0 1px, transparent 1px 30px);
  mask-image: linear-gradient(180deg, transparent, #000 9%, #000 91%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 9%, #000 91%, transparent);
}

/* ra-need: remove old negative margin bleed and border-top/bottom */
.ra-page-shell .ra-need {
  border-top: none !important;
  border-bottom: none !important;
}

/* FULL-WIDTH: ra-price-card - vivid pricing standout */
.ra-page-shell .ra-price-card {
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding: var(--ra-section-pad-y) var(--ra-section-pad-x) !important;
  border-radius: var(--ra-section-radius) !important;
  outline: 1px solid rgba(255,255,255,.12);
  outline-offset: 10px;
  border-color: rgba(54, 190, 255, .55) !important;
  background:
    radial-gradient(circle at 14% 50%, rgba(74, 218, 255, .66), transparent 9rem),
    linear-gradient(100deg, #09caff 0%, #054bed 50%, #18037a 100%) !important;
  box-shadow:
    0 24px 66px rgba(0, 0, 0, .36),
    0 0 44px rgba(5, 192, 255, .22),
    inset 0 1px 0 rgba(255,255,255,.18) !important;
}

.ra-page-shell .ra-price-card::before {
  content: "";
  position: absolute;
  inset: -32% -8%;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 22% 52%, rgba(255,255,255,.22), transparent 16rem),
    repeating-linear-gradient(114deg, rgba(255,255,255,.12) 0 1px, transparent 1px 26px);
  opacity: .3;
  border-radius: inherit;
}

.ra-page-shell .ra-price-card > * {
  position: relative;
  z-index: 1;
}

/* CTA band: full width, keep existing vivid bg, just fix radius */
.ra-page-shell .ra-cta {
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  border-radius: var(--ra-section-radius) !important;
}

/* TEXT SIZE IMPROVEMENTS — ra page */
.ra-page-shell .ra-need-copy h2,
.ra-page-shell .ra-included h2,
.ra-page-shell .ra-process h2,
.ra-page-shell .ra-price-card h2,
.ra-page-shell .ra-faq h2,
.ra-page-shell .ra-testimonials h2 {
  font-size: clamp(21px, 2.4vw, 28px) !important;
}

.ra-page-shell .ra-need-copy p {
  font-size: 15px !important;
  line-height: 1.7;
}

.ra-page-shell .ra-check-list {
  font-size: 14px !important;
  line-height: 2;
}

.ra-page-shell .ra-mini-card h3 {
  font-size: 14px !important;
}

.ra-page-shell .ra-mini-card p {
  font-size: 12px !important;
  line-height: 1.58;
}

.ra-page-shell .ra-process-grid h3 {
  font-size: 14px !important;
}

.ra-page-shell .ra-process-grid p {
  font-size: 12px !important;
  line-height: 1.5;
}

.ra-page-shell .ra-faq summary {
  font-size: 14px !important;
  min-height: 36px;
}

.ra-page-shell .ra-faq p {
  font-size: 12px !important;
  line-height: 1.55;
}

.ra-page-shell .ra-proof-row b {
  font-size: 13px !important;
}

.ra-page-shell .ra-proof-row small {
  font-size: 11px !important;
}

/* Mobile hero: image behind text */
@media (max-width: 980px) {
  .ra-page-shell .ra-hero {
    position: relative;
    grid-template-columns: 1fr !important;
    min-height: clamp(530px, 78vw, 640px);
    padding: 42px 0 48px;
    align-items: start;
    overflow: hidden;
  }

  .ra-page-shell .ra-hero-visual {
    position: absolute !important;
    top: 0 !important;
    right: -6% !important;
    bottom: 0 !important;
    left: 35% !important;
    min-height: 0 !important;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
    opacity: .40;
    filter: saturate(1.12) contrast(1.04);
    mask-image:
      radial-gradient(ellipse at 80% 50%, #000 0%, rgba(0,0,0,.78) 36%, rgba(0,0,0,.44) 56%, transparent 86%),
      linear-gradient(180deg, transparent 0%, rgba(0,0,0,.8) 16%, #000 46%, rgba(0,0,0,.8) 82%, transparent 100%);
    -webkit-mask-image:
      radial-gradient(ellipse at 80% 50%, #000 0%, rgba(0,0,0,.78) 36%, rgba(0,0,0,.44) 56%, transparent 86%),
      linear-gradient(180deg, transparent 0%, rgba(0,0,0,.8) 16%, #000 46%, rgba(0,0,0,.8) 82%, transparent 100%);
    mask-composite: intersect;
    -webkit-mask-composite: source-in;
  }

  .ra-page-shell .ra-hero-visual img {
    width: auto !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: contain;
    object-position: right center;
  }

  .ra-page-shell .ra-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
      linear-gradient(90deg, rgba(1,7,22,.97) 0%, rgba(1,7,22,.92) 42%, rgba(1,7,22,.58) 68%, rgba(1,7,22,.1) 100%),
      linear-gradient(180deg, rgba(1,7,22,.88) 0%, rgba(1,7,22,.52) 42%, rgba(1,7,22,.14) 68%, rgba(1,7,22,.88) 100%);
  }

  .ra-page-shell .ra-hero-copy {
    position: relative;
    z-index: 2;
  }

  .ra-page-shell .ra-need,
  .ra-page-shell .ra-included,
  .ra-page-shell .ra-process,
  .ra-page-shell .ra-faq,
  .ra-page-shell .ra-testimonials {
    width: min(100% - 36px, 720px) !important;
  }

  .ra-page-shell .ra-price-card {
    padding: 28px var(--ra-section-pad-x) !important;
  }
}

@media (max-width: 620px) {
  .ra-page-shell .ra-hero {
    min-height: 570px;
    padding: 32px 0 44px;
  }

  .ra-page-shell .ra-hero::after {
    background:
      linear-gradient(90deg, rgba(1,7,22,.99) 0%, rgba(1,7,22,.94) 44%, rgba(1,7,22,.28) 70%, transparent 100%),
      linear-gradient(180deg, rgba(1,7,22,.99) 0%, rgba(1,7,22,.82) 40%, rgba(1,7,22,.14) 68%, #020819 100%);
  }

  .ra-page-shell .ra-need,
  .ra-page-shell .ra-included,
  .ra-page-shell .ra-process,
  .ra-page-shell .ra-faq,
  .ra-page-shell .ra-testimonials {
    width: 100% !important;
    border-radius: 14px !important;
  }

  .ra-page-shell .ra-price-card,
  .ra-page-shell .ra-cta {
    border-radius: 14px !important;
  }
}


/* ================================================================
   PAYMENT GATEWAY PAGE: section layout, rhythm & hero mobile
   ================================================================ */

.payment-page-shell {
  --payment-section-gap: clamp(48px, 7vw, 72px);
  --payment-section-pad-y: clamp(36px, 5vw, 56px);
  --payment-section-pad-x: clamp(22px, 3.2vw, 38px);
  --payment-section-radius: 20px;
}

.payment-main {
  padding-bottom: clamp(56px, 7vw, 88px);
}

.payment-main .container > section {
  position: relative;
  isolation: isolate;
  margin-bottom: 0 !important;
}

.payment-main .container > section + section {
  margin-top: var(--payment-section-gap) !important;
}

.payment-page-shell .payment-hero {
  margin-top: clamp(8px, 2.4vw, 24px) !important;
  overflow: hidden;
  border-bottom: none !important;
}

/* BOX sections: gateway-section, payment-process */
.payment-page-shell .gateway-section,
.payment-page-shell .payment-process {
  width: min(100% - 96px, var(--container-narrow-max)) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: var(--payment-section-pad-y) var(--payment-section-pad-x) !important;
  border-radius: var(--payment-section-radius) !important;
  border: 1px solid rgba(80, 90, 230, .24) !important;
  background:
    radial-gradient(ellipse at 14% 16%, rgba(30, 92, 255, .17), transparent 20rem),
    radial-gradient(ellipse at 88% 78%, rgba(109, 101, 255, .13), transparent 18rem),
    linear-gradient(145deg, rgba(4, 18, 52, .78), rgba(2, 10, 30, .74)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    inset 0 -1px 0 rgba(100, 120, 255, .03),
    0 28px 78px rgba(0, 0, 0, .28) !important;
}

.payment-page-shell .gateway-section::before,
.payment-page-shell .payment-process::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  pointer-events: none;
  opacity: .88;
  mix-blend-mode: screen;
  background:
    radial-gradient(circle at 10% 12%, rgba(80, 100, 255, .28), transparent 14rem),
    radial-gradient(circle at 88% 82%, rgba(110, 64, 255, .15), transparent 18rem),
    repeating-linear-gradient(118deg, rgba(255,255,255,.02) 0 1px, transparent 1px 30px);
  mask-image: linear-gradient(180deg, transparent, #000 9%, #000 91%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 9%, #000 91%, transparent);
}

/* FULL-WIDTH: payment-perfect - vivid mid-page accent */
.payment-page-shell .payment-perfect {
  padding: var(--payment-section-pad-y) var(--payment-section-pad-x) !important;
  border-radius: var(--payment-section-radius) !important;
  outline: 1px solid rgba(255,255,255,.1);
  outline-offset: 10px;
  border: 1px solid rgba(100, 110, 255, .5) !important;
  background:
    radial-gradient(circle at 14% 50%, rgba(100, 115, 255, .55), transparent 9rem),
    radial-gradient(circle at 82% 30%, rgba(85, 68, 255, .28), transparent 18rem),
    linear-gradient(110deg, #1a10a8 0%, #0a0966 50%, #0d0346 100%) !important;
  box-shadow:
    0 24px 66px rgba(0, 0, 0, .38),
    0 0 44px rgba(80, 100, 255, .24),
    inset 0 1px 0 rgba(255,255,255,.16) !important;
}

.payment-page-shell .payment-perfect::before {
  content: "";
  position: absolute;
  inset: -30% -8%;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 52%, rgba(255,255,255,.18), transparent 15rem),
    repeating-linear-gradient(114deg, rgba(255,255,255,.1) 0 1px, transparent 1px 24px);
  opacity: .32;
  border-radius: inherit;
}

.payment-page-shell .payment-perfect > * {
  position: relative;
  z-index: 1;
}

/* FULL-WIDTH CTA: payment-ready */
.payment-page-shell .payment-ready {
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding: var(--payment-section-pad-y) var(--payment-section-pad-x) !important;
  border-radius: var(--payment-section-radius) !important;
  outline: 1px solid rgba(255,255,255,.12);
  outline-offset: 10px;
  border-color: rgba(80, 100, 255, .55) !important;
  background:
    radial-gradient(circle at 14% 50%, rgba(100, 115, 255, .6), transparent 9rem),
    linear-gradient(100deg, #1815ff 0%, #0a2aed 50%, #18037a 100%) !important;
  box-shadow:
    0 24px 66px rgba(0, 0, 0, .36),
    0 0 44px rgba(80, 100, 255, .22),
    inset 0 1px 0 rgba(255,255,255,.18) !important;
}

.payment-page-shell .payment-ready::before {
  content: "";
  position: absolute;
  inset: -32% -8%;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 22% 52%, rgba(255,255,255,.22), transparent 16rem),
    repeating-linear-gradient(114deg, rgba(255,255,255,.12) 0 1px, transparent 1px 26px);
  opacity: .3;
  border-radius: inherit;
}

.payment-page-shell .payment-ready > * {
  position: relative;
  z-index: 1;
}

/* TEXT SIZE IMPROVEMENTS — payment page */
.payment-page-shell .gateway-section h2,
.payment-page-shell .payment-perfect h2,
.payment-page-shell .payment-process h2 {
  font-size: clamp(21px, 2.4vw, 28px) !important;
}

.payment-page-shell .gateway-card-grid p {
  font-size: 15px !important;
  line-height: 1.6;
}

.payment-page-shell .gateway-card-grid a {
  font-size: 15px !important;
}

.payment-page-shell .payment-perfect h3 {
  font-size: 15px !important;
}

.payment-page-shell .payment-perfect p {
  font-size: 14px !important;
  line-height: 1.55;
}

.payment-page-shell .payment-process-grid h3 {
  font-size: 15px !important;
}

.payment-page-shell .payment-process-grid p {
  font-size: 13px !important;
  line-height: 1.52;
}

.payment-page-shell .ready-copy h2 {
  font-size: clamp(25px, 3vw, 34px) !important;
}

.payment-page-shell .ready-copy p {
  font-size: 16px !important;
}

.payment-page-shell .ready-stat b {
  font-size: clamp(30px, 3.2vw, 38px) !important;
}

/* Mobile hero: dashboard goes behind copy */
@media (max-width: 980px) {
  .payment-page-shell .payment-hero {
    position: relative;
    grid-template-columns: 1fr !important;
    min-height: clamp(540px, 78vw, 660px);
    padding-top: 42px;
    align-items: start;
    overflow: hidden;
  }

  .payment-page-shell .payment-dashboard {
    position: absolute !important;
    top: 0 !important;
    right: -6% !important;
    bottom: 0 !important;
    left: 28% !important;
    min-height: 0 !important;
    z-index: 0;
    overflow: hidden;
    opacity: .36;
    filter: saturate(1.1);
    mask-image:
      radial-gradient(ellipse at 78% 50%, #000 0%, rgba(0,0,0,.7) 38%, rgba(0,0,0,.36) 58%, transparent 86%),
      linear-gradient(180deg, transparent 0%, rgba(0,0,0,.74) 14%, #000 44%, rgba(0,0,0,.74) 82%, transparent 100%);
    -webkit-mask-image:
      radial-gradient(ellipse at 78% 50%, #000 0%, rgba(0,0,0,.7) 38%, rgba(0,0,0,.36) 58%, transparent 86%),
      linear-gradient(180deg, transparent 0%, rgba(0,0,0,.74) 14%, #000 44%, rgba(0,0,0,.74) 82%, transparent 100%);
    mask-composite: intersect;
    -webkit-mask-composite: source-in;
  }

  .payment-page-shell .payment-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
      linear-gradient(90deg, rgba(2,7,22,.97) 0%, rgba(2,7,22,.92) 42%, rgba(2,7,22,.58) 68%, rgba(2,7,22,.1) 100%),
      linear-gradient(180deg, rgba(2,7,22,.88) 0%, rgba(2,7,22,.52) 42%, rgba(2,7,22,.14) 68%, rgba(2,7,22,.88) 100%);
  }

  .payment-page-shell .payment-copy {
    position: relative;
    z-index: 2;
  }

  .payment-page-shell .gateway-section,
  .payment-page-shell .payment-process {
    width: min(100% - 36px, 720px) !important;
  }
}

@media (max-width: 620px) {
  .payment-page-shell .payment-hero {
    min-height: 570px;
    padding-top: 32px;
  }

  .payment-page-shell .payment-hero::after {
    background:
      linear-gradient(90deg, rgba(2,7,22,.99) 0%, rgba(2,7,22,.94) 44%, rgba(2,7,22,.28) 70%, transparent 100%),
      linear-gradient(180deg, rgba(2,7,22,.99) 0%, rgba(2,7,22,.82) 40%, rgba(2,7,22,.14) 68%, #020b1e 100%);
  }

  .payment-page-shell .gateway-section,
  .payment-page-shell .payment-process {
    width: 100% !important;
    border-radius: 14px !important;
  }

  .payment-page-shell .payment-perfect,
  .payment-page-shell .payment-ready {
    border-radius: 14px !important;
    padding: 24px 20px !important;
  }
}

/* ================================================================
   ITIN PAGE: Full layout system — section rhythm, box/full-width,
   hero image, question card image, text sizes, animations
   ================================================================ */

/* ── Custom properties ─────────────────────────────────────────── */
.itin-page-shell {
  --itin-section-gap: clamp(48px, 7vw, 72px);
  --itin-section-pad-y: clamp(36px, 5vw, 56px);
  --itin-section-pad-x: clamp(24px, 3.4vw, 42px);
  --itin-section-radius: 20px;
}

.itin-main {
  padding-bottom: clamp(56px, 7vw, 88px);
}

/* ── Section gap system ────────────────────────────────────────── */
.itin-main .container > section {
  position: relative;
  isolation: isolate;
  margin-bottom: 0 !important;
}

.itin-main .container > section + section {
  margin-top: var(--itin-section-gap) !important;
}

/* ── Hero: update background to use itin-application-hero.png ──── */
.itin-page-shell .itin-hero {
  margin-top: clamp(8px, 2.4vw, 24px) !important;
  overflow: visible;
}

.itin-page-shell .itin-hero::before {
  background:
    linear-gradient(90deg, rgba(1, 7, 22, .97) 0%, rgba(1, 7, 22, .68) 42%, rgba(1, 7, 22, .16) 72%),
    linear-gradient(180deg, rgba(1, 7, 22, .06), rgba(1, 7, 22, .84)),
    url("../../asset/itin-application-hero.png") center 44% / cover no-repeat;
}

/* ITIN card float animation */
@keyframes itinFloat {
  0%, 100% { transform: perspective(900px) rotateY(-18deg) rotateZ(-8deg) translateY(0px); }
  50%       { transform: perspective(900px) rotateY(-18deg) rotateZ(-8deg) translateY(-16px); }
}

@keyframes itinGlow {
  0%, 100% { box-shadow: 0 0 0 38px rgba(10, 98, 255, .08), 0 0 58px rgba(0, 112, 255, .30); }
  50%       { box-shadow: 0 0 0 52px rgba(10, 98, 255, .05), 0 0 80px rgba(0, 112, 255, .44); }
}

.itin-page-shell .itin-card-visual {
  animation: itinFloat 5.2s ease-in-out infinite;
}

.itin-page-shell .itin-hero-visual::before {
  animation: itinGlow 4s ease-in-out infinite;
}

/* ── BOX sections: all .itin-section elements ──────────────────── */
.itin-page-shell .itin-section {
  width: min(100% - 96px, var(--container-narrow-max)) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: var(--itin-section-pad-y) var(--itin-section-pad-x) !important;
  border-radius: var(--itin-section-radius) !important;
  border: 1px solid rgba(60, 85, 230, .22) !important;
  background:
    radial-gradient(ellipse at 14% 16%, rgba(41, 80, 255, .16), transparent 20rem),
    radial-gradient(ellipse at 88% 78%, rgba(20, 80, 255, .12), transparent 18rem),
    linear-gradient(145deg, rgba(4, 15, 50, .82), rgba(2, 8, 32, .78)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    inset 0 -1px 0 rgba(79, 120, 255, .03),
    0 28px 78px rgba(0, 0, 0, .28) !important;
}

/* Inner ambient glow for box sections */
.itin-page-shell .itin-section::before {
  content: "" !important;
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  pointer-events: none;
  opacity: .88;
  mix-blend-mode: screen;
  background:
    radial-gradient(circle at 10% 12%, rgba(80, 100, 255, .28), transparent 14rem),
    radial-gradient(circle at 88% 82%, rgba(40, 60, 255, .14), transparent 18rem),
    repeating-linear-gradient(118deg, rgba(255,255,255,.02) 0 1px, transparent 1px 30px);
  mask-image: linear-gradient(180deg, transparent, #000 9%, #000 91%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 9%, #000 91%, transparent);
}

/* ── FULL-WIDTH: itin-packages (pricing + docs standout) ──────── */
.itin-page-shell .itin-packages {
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  border-radius: var(--itin-section-radius) !important;
  border-color: rgba(65, 130, 255, .52) !important;
  outline: 1px solid rgba(255,255,255,.1);
  outline-offset: 10px;
  box-shadow:
    0 28px 78px rgba(0, 0, 0, .34),
    0 0 44px rgba(41, 90, 255, .2),
    inset 0 1px 0 rgba(255,255,255,.09) !important;
  padding: var(--itin-section-pad-y) var(--itin-section-pad-x) !important;
}

.itin-page-shell .itin-packages::before {
  content: "";
  position: absolute;
  inset: -28% -8%;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 52%, rgba(41, 90, 255, .14), transparent 16rem),
    repeating-linear-gradient(112deg, rgba(255,255,255,.06) 0 1px, transparent 1px 24px);
  opacity: .38;
  border-radius: inherit;
}

.itin-page-shell .itin-packages > * {
  position: relative;
  z-index: 1;
}

/* ── FULL-WIDTH CTA ────────────────────────────────────────────── */
.itin-page-shell .itin-cta {
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  border-radius: var(--itin-section-radius) !important;
  outline: 1px solid rgba(255,255,255,.1);
  outline-offset: 10px;
}

/* ── Question card image ───────────────────────────────────────── */
.itin-page-shell .question-visual {
  background:
    url("../../asset/itin-question-img.png") center / contain no-repeat,
    radial-gradient(circle at 50% 38%, #e9f5ff 0 38%, #68a8ff 39% 64%, transparent 65%),
    radial-gradient(circle at 78% 34%, #fff 0 12%, transparent 13%),
    radial-gradient(circle at 23% 82%, #51bf7d 0 11%, transparent 12%);
  color: transparent;
}

/* ── TEXT SIZE IMPROVEMENTS ────────────────────────────────────── */

/* Section headings */
.itin-page-shell .itin-section > h2,
.itin-page-shell .itin-packages > h2 {
  font-size: clamp(23px, 2.8vw, 32px) !important;
  margin-bottom: 38px !important;
}

/* Why / mini cards */
.itin-page-shell .itin-mini-card h3,
.itin-page-shell .itin-doc-grid h3 {
  font-size: 16px !important;
}

.itin-page-shell .itin-mini-card p,
.itin-page-shell .itin-doc-grid p {
  font-size: 14px !important;
  line-height: 1.6;
}

/* Process */
.itin-page-shell .itin-process-grid h3 {
  font-size: 15px !important;
}

.itin-page-shell .itin-process-grid p,
.itin-page-shell .itin-process p {
  font-size: 13px !important;
  line-height: 1.55;
}

/* Proof row badges */
.itin-page-shell .itin-proof-row span {
  font-size: 14px !important;
}

.itin-page-shell .itin-proof-row small {
  font-size: 12px !important;
}

/* FAQ */
.itin-page-shell .boi-faq summary {
  font-size: 14px !important;
}

.itin-page-shell .boi-faq p {
  font-size: 13px !important;
  line-height: 1.55;
}

/* Question card */
.itin-page-shell .itin-question-card h3 {
  font-size: 23px !important;
}

.itin-page-shell .itin-question-card p {
  font-size: 16px !important;
}

/* Price card */
.itin-page-shell .itin-price-card h3 {
  font-size: 19px !important;
}

/* ── Hover glow on mini cards ──────────────────────────────────── */
.itin-page-shell .itin-mini-card {
  transition: transform 0.28s cubic-bezier(.2,.8,.2,1), box-shadow 0.28s ease !important;
}

.itin-page-shell .itin-mini-card:hover {
  box-shadow:
    0 22px 54px rgba(0, 0, 0, .34),
    0 0 28px rgba(80, 100, 255, .22),
    inset 0 1px 0 rgba(255,255,255,.1) !important;
}

/* ── Mobile hero: ITIN card goes behind copy (≤ 980px) ─────────── */
@media (max-width: 980px) {
  .itin-page-shell .itin-hero {
    position: relative;
    grid-template-columns: 1fr !important;
    min-height: clamp(540px, 78vw, 660px);
    padding-top: 42px !important;
    align-items: start;
    overflow: hidden !important;
  }

  .itin-page-shell .itin-hero-visual {
    position: absolute !important;
    top: 0 !important;
    right: -8% !important;
    bottom: 0 !important;
    left: 20% !important;
    min-height: 0 !important;
    z-index: 0;
    opacity: .40;
    filter: saturate(1.1);
    mask-image:
      radial-gradient(ellipse at 75% 50%, #000 0%, rgba(0,0,0,.72) 38%, rgba(0,0,0,.38) 60%, transparent 88%),
      linear-gradient(180deg, transparent 0%, rgba(0,0,0,.78) 14%, #000 44%, rgba(0,0,0,.78) 82%, transparent 100%);
    -webkit-mask-image:
      radial-gradient(ellipse at 75% 50%, #000 0%, rgba(0,0,0,.72) 38%, rgba(0,0,0,.38) 60%, transparent 88%),
      linear-gradient(180deg, transparent 0%, rgba(0,0,0,.78) 14%, #000 44%, rgba(0,0,0,.78) 82%, transparent 100%);
    mask-composite: intersect;
    -webkit-mask-composite: source-in;
  }

  /* Position the 3D card within the faded art area */
  .itin-page-shell .itin-card-visual {
    right: auto !important;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%) perspective(900px) rotateY(-10deg) rotateZ(-5deg) !important;
    animation: none !important;
  }

  /* Kill the glow ring on mobile (it breaks out of container) */
  .itin-page-shell .itin-hero-visual::before {
    display: none !important;
  }

  /* Dark gradient overlay so copy stays readable */
  .itin-page-shell .itin-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
      linear-gradient(90deg, rgba(1,7,22,.97) 0%, rgba(1,7,22,.92) 42%, rgba(1,7,22,.58) 68%, rgba(1,7,22,.1) 100%),
      linear-gradient(180deg, rgba(1,7,22,.88) 0%, rgba(1,7,22,.52) 42%, rgba(1,7,22,.14) 68%, rgba(1,7,22,.88) 100%);
  }

  .itin-page-shell .itin-hero-copy {
    position: relative;
    z-index: 2;
  }

  /* Box sections: narrower on tablet */
  .itin-page-shell .itin-section {
    width: min(100% - 36px, 720px) !important;
  }

  /* Update hero background for mobile */
  .itin-page-shell .itin-hero::before {
    inset: -8px -28px -12px;
    background:
      radial-gradient(circle at 78% 40%, rgba(41, 90, 255, .22), transparent 18rem),
      linear-gradient(180deg, rgba(1,7,22,.92), rgba(1,7,22,.98)),
      url("../../asset/itin-application-hero.png") center top / cover no-repeat;
  }
}

@media (max-width: 620px) {
  .itin-page-shell .itin-hero {
    min-height: 570px;
    padding-top: 32px !important;
  }

  .itin-page-shell .itin-hero::after {
    background:
      linear-gradient(90deg, rgba(1,7,22,.99) 0%, rgba(1,7,22,.94) 44%, rgba(1,7,22,.28) 70%, transparent 100%),
      linear-gradient(180deg, rgba(1,7,22,.99) 0%, rgba(1,7,22,.82) 40%, rgba(1,7,22,.14) 68%, #020819 100%);
  }

  .itin-page-shell .itin-section {
    width: 100% !important;
    border-radius: 14px !important;
  }

  .itin-page-shell .itin-packages,
  .itin-page-shell .itin-cta {
    border-radius: 14px !important;
  }

  .itin-page-shell .itin-question-card {
    grid-template-columns: 1fr !important;
    justify-items: center;
    text-align: center;
    padding: 24px 20px !important;
  }

  .itin-page-shell .itin-packages {
    padding: 24px 18px !important;
  }
}

/* ================================================================
   FIX: ITIN question card image — use ::after overlay so
   itin-question-img.png is always clearly visible
   ================================================================ */

.itin-page-shell .question-visual {
  position: relative;
  overflow: hidden;
}

/* Image overlays on top of the CSS-gradient sphere */
.itin-page-shell .question-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: url("../../asset/itin-question-img.png") center / cover no-repeat;
  z-index: 2;
}

/* Keep the "?" invisible — the image handles the visual */
.itin-page-shell .question-visual {
  color: transparent;
  font-size: 0;
}


/* ================================================================
   EIN APPLICATION PAGE: section layout, rhythm, images, animations
   ================================================================ */

.ein-page-shell {
  --ein-section-gap: clamp(48px, 7vw, 72px);
  --ein-section-pad-y: clamp(36px, 5vw, 56px);
  --ein-section-pad-x: clamp(24px, 3.4vw, 42px);
  --ein-section-radius: 20px;
}

.ein-main {
  padding-bottom: clamp(56px, 7vw, 88px);
}

/* ── Section gap system ────────────────────────────────────────── */
.ein-main .container > section {
  position: relative;
  isolation: isolate;
  margin-bottom: 0 !important;
}

.ein-main .container > section + section {
  margin-top: var(--ein-section-gap) !important;
}

/* ── Hero: use ein-application-hero.png, show person image clearly */
.ein-page-shell .ein-hero {
  margin-top: clamp(8px, 2.4vw, 24px) !important;
  overflow: hidden;
}

.ein-page-shell .ein-hero::before {
  background:
    linear-gradient(90deg, rgba(1,7,22,.98) 0%, rgba(1,7,22,.82) 35%, rgba(1,7,22,.28) 62%, rgba(1,7,22,.04) 82%),
    linear-gradient(180deg, rgba(1,7,22,.06), rgba(1,7,22,.78)),
    url("../../asset/ein-application-hero.png") right center / cover no-repeat;
}

/* Hide CSS-drawn person & laptop — real photo takes their place */
.ein-page-shell .ein-person,
.ein-page-shell .ein-laptop {
  display: none;
}

/* Reposition cert card to the visible area of the photo */
.ein-page-shell .ein-cert {
  right: 60px;
  top: 44px;
}

/* Reposition status badges */
.ein-page-shell .ein-status-one  { right: 12px; top: 80px; }
.ein-page-shell .ein-status-two  { right: 22px; top: 178px; }
.ein-page-shell .ein-status-three{ right: 12px; top: 276px; }

/* ── BOX sections ─────────────────────────────────────────────── */
.ein-page-shell .ein-overview,
.ein-page-shell .ein-docs,
.ein-page-shell .ein-why,
.ein-page-shell .ein-split,
.ein-page-shell .ein-testimonials {
  width: min(100% - 96px, var(--container-narrow-max)) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  border-radius: var(--ein-section-radius) !important;
  border: 1px solid rgba(55, 100, 230, .22) !important;
  background:
    radial-gradient(ellipse at 14% 16%, rgba(0, 137, 255, .16), transparent 20rem),
    radial-gradient(ellipse at 88% 78%, rgba(0, 180, 255, .1), transparent 18rem),
    linear-gradient(145deg, rgba(4, 15, 50, .82), rgba(2, 8, 32, .78)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    inset 0 -1px 0 rgba(0, 190, 255, .03),
    0 28px 78px rgba(0, 0, 0, .28) !important;
  padding: var(--ein-section-pad-y) var(--ein-section-pad-x) !important;
  margin-bottom: 0 !important;
  overflow: hidden;
}

/* Inner glow layer for box sections */
.ein-page-shell .ein-overview::before,
.ein-page-shell .ein-docs::before,
.ein-page-shell .ein-why::before,
.ein-page-shell .ein-split::before,
.ein-page-shell .ein-testimonials::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  pointer-events: none;
  opacity: .88;
  mix-blend-mode: screen;
  background:
    radial-gradient(circle at 10% 12%, rgba(0, 190, 255, .24), transparent 14rem),
    radial-gradient(circle at 88% 82%, rgba(0, 137, 255, .14), transparent 18rem),
    repeating-linear-gradient(118deg, rgba(255,255,255,.02) 0 1px, transparent 1px 30px);
  mask-image: linear-gradient(180deg, transparent, #000 9%, #000 91%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 9%, #000 91%, transparent);
}

/* ein-overview / ein-docs keep their own grid columns */
.ein-page-shell .ein-overview {
  grid-template-columns: 38% 62%;
}

.ein-page-shell .ein-docs {
  grid-template-columns: 42% 58%;
}

/* ── FULL-WIDTH: ein-process (vivid mid-page accent) ──────────── */
.ein-page-shell .ein-process {
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  border-radius: var(--ein-section-radius) !important;
  outline: 1px solid rgba(255,255,255,.1);
  outline-offset: 10px;
  border: 1px solid rgba(0, 185, 255, .48) !important;
  background:
    radial-gradient(circle at 14% 50%, rgba(0, 200, 255, .55), transparent 9rem),
    radial-gradient(circle at 82% 30%, rgba(0, 140, 255, .28), transparent 18rem),
    linear-gradient(110deg, #04286e 0%, #031858 50%, #020d38 100%) !important;
  box-shadow:
    0 24px 66px rgba(0, 0, 0, .38),
    0 0 44px rgba(0, 160, 255, .24),
    inset 0 1px 0 rgba(255,255,255,.16) !important;
  padding: var(--ein-section-pad-y) var(--ein-section-pad-x) !important;
  margin-bottom: 0 !important;
}

.ein-page-shell .ein-process::before {
  content: "";
  position: absolute;
  inset: -30% -8%;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 52%, rgba(255,255,255,.18), transparent 15rem),
    repeating-linear-gradient(114deg, rgba(255,255,255,.1) 0 1px, transparent 1px 24px);
  opacity: .32;
  border-radius: inherit;
}

.ein-page-shell .ein-process > * {
  position: relative;
  z-index: 1;
}

/* ── FULL-WIDTH: ein-bottom-grid (CTA at end) ─────────────────── */
.ein-page-shell .ein-bottom-grid {
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  border-radius: var(--ein-section-radius) !important;
  outline: 1px solid rgba(255,255,255,.1);
  outline-offset: 10px;
  border: 1px solid rgba(0, 150, 255, .38) !important;
  background:
    radial-gradient(circle at 10% 50%, rgba(0, 190, 255, .16), transparent 18rem),
    radial-gradient(circle at 88% 28%, rgba(0, 140, 255, .12), transparent 22rem),
    linear-gradient(145deg, rgba(4, 18, 52, .96), rgba(2, 8, 30, .98)) !important;
  box-shadow:
    0 28px 78px rgba(0, 0, 0, .34),
    0 0 44px rgba(0, 160, 255, .18),
    inset 0 1px 0 rgba(255,255,255,.08) !important;
  margin-bottom: 0 !important;
}

.ein-page-shell .ein-bottom-grid::before {
  content: "";
  position: absolute;
  inset: -28% -8%;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 22% 50%, rgba(0, 200, 255, .12), transparent 16rem),
    repeating-linear-gradient(112deg, rgba(255,255,255,.06) 0 1px, transparent 1px 24px);
  opacity: .38;
  border-radius: inherit;
}

.ein-page-shell .ein-bottom-grid > * {
  position: relative;
  z-index: 1;
}

/* ── IMAGE: ein-tablet — show ein-table.png clearly ──────────── */
.ein-page-shell .ein-tablet {
  width: 100%;
  max-width: 300px;
  height: 210px;
  padding: 0 !important;
  background: url("../../asset/ein-table.png") center / contain no-repeat !important;
  border: none !important;
  box-shadow: none !important;
  color: transparent;
}

.ein-page-shell .ein-tablet strong,
.ein-page-shell .ein-tablet b {
  display: none;
}

.ein-page-shell .ein-tablet i {
  display: none;
}

/* ── IMAGE: ein-doc-visual — show ein-docs.png clearly ────────── */
.ein-page-shell .ein-doc-visual {
  position: relative;
  min-height: 230px;
  background: url("../../asset/ein-docs.png") center left / contain no-repeat;
}

/* Hide the CSS-drawn document elements (image replaces them) */
.ein-page-shell .ein-doc-visual > i {
  display: none;
}

/* Keep the checklist card floating over the image */
.ein-page-shell .ein-doc-visual article {
  position: absolute;
  right: 18px;
  top: 8px;
  z-index: 2;
}

/* ── TEXT SIZE IMPROVEMENTS ────────────────────────────────────── */

.ein-page-shell .ein-overview h2,
.ein-page-shell .ein-docs h2,
.ein-page-shell .ein-process h2,
.ein-page-shell .ein-why h2,
.ein-page-shell .ein-price h2,
.ein-page-shell .ein-for h2,
.ein-page-shell .ein-testimonials h2,
.ein-page-shell .ein-ready h2 {
  font-size: clamp(21px, 2.6vw, 30px) !important;
}

.ein-page-shell .ein-overview p,
.ein-page-shell .ein-docs p,
.ein-page-shell .ein-process p,
.ein-page-shell .ein-why p,
.ein-page-shell .ein-ready p {
  font-size: 15px !important;
  line-height: 1.65;
}

.ein-page-shell .ein-need-icons article {
  font-size: 14px !important;
}

.ein-page-shell .ein-why article h3 {
  font-size: 15px !important;
}

.ein-page-shell .ein-process-grid h3 {
  font-size: 15px !important;
}

.ein-page-shell .ein-check-grid {
  font-size: 14px !important;
}

.ein-page-shell .boi-faq summary {
  font-size: 14px !important;
}

.ein-page-shell .boi-faq p {
  font-size: 13px !important;
  line-height: 1.55;
}

/* ── Hover effects on cards ────────────────────────────────────── */
.ein-page-shell .ein-process-grid article,
.ein-page-shell .ein-need-icons article {
  transition: transform 0.28s cubic-bezier(.2,.8,.2,1) !important;
}

/* ── Mobile hero: photo goes behind copy (≤ 980px) ─────────────── */
@media (max-width: 980px) {
  .ein-page-shell .ein-hero {
    position: relative;
    grid-template-columns: 1fr !important;
    min-height: clamp(540px, 78vw, 660px);
    padding-top: 42px !important;
    align-items: start;
    overflow: hidden;
  }

  /* Hero visual goes behind copy */
  .ein-page-shell .ein-hero-visual {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    min-height: 0 !important;
    z-index: 0;
    opacity: 0;  /* background image handles this via ::before */
  }

  /* Overlay gradient ensures text readability */
  .ein-page-shell .ein-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
      linear-gradient(90deg, rgba(1,7,22,.97) 0%, rgba(1,7,22,.92) 42%, rgba(1,7,22,.52) 68%, rgba(1,7,22,.08) 100%),
      linear-gradient(180deg, rgba(1,7,22,.88) 0%, rgba(1,7,22,.48) 42%, rgba(1,7,22,.12) 68%, rgba(1,7,22,.88) 100%);
  }

  .ein-page-shell .ein-hero::before {
    inset: -8px -28px 0;
    opacity: .72;
    background:
      linear-gradient(90deg, rgba(1,7,22,.98) 0%, rgba(1,7,22,.84) 38%, rgba(1,7,22,.32) 64%, rgba(1,7,22,.06) 84%),
      url("../../asset/ein-application-hero.png") right center / cover no-repeat;
  }

  .ein-page-shell .ein-hero-copy {
    position: relative;
    z-index: 2;
  }

  /* Box sections narrower on tablet */
  .ein-page-shell .ein-overview,
  .ein-page-shell .ein-docs,
  .ein-page-shell .ein-why,
  .ein-page-shell .ein-split,
  .ein-page-shell .ein-testimonials {
    width: min(100% - 36px, 720px) !important;
  }
}

@media (max-width: 620px) {
  .ein-page-shell .ein-hero {
    min-height: 570px;
    padding-top: 30px !important;
  }

  .ein-page-shell .ein-overview,
  .ein-page-shell .ein-docs,
  .ein-page-shell .ein-why,
  .ein-page-shell .ein-split,
  .ein-page-shell .ein-testimonials {
    width: 100% !important;
    border-radius: 14px !important;
  }

  .ein-page-shell .ein-process,
  .ein-page-shell .ein-bottom-grid {
    border-radius: 14px !important;
  }

  .ein-page-shell .ein-tablet {
    max-width: 220px;
    height: 160px;
    margin: 0 auto;
  }

  .ein-page-shell .ein-doc-visual {
    background-position: left top;
    min-height: 180px;
  }
}

/* ================================================================
   EIN FIX PATCH — hero desktop image, doc visual, ready visual
   ================================================================ */

/* ── HERO DESKTOP: image shown inside .ein-hero-visual (right side) */

/* Step 1: ::before becomes pure gradient only — no image */
.ein-page-shell .ein-hero::before {
  background:
    linear-gradient(90deg,
      rgba(1,7,22,.99) 0%,
      rgba(1,7,22,.96) 32%,
      rgba(1,7,22,.6)  54%,
      rgba(1,7,22,.18) 72%,
      transparent      86%),
    linear-gradient(180deg, rgba(1,7,22,.08), rgba(1,7,22,.72));
}

/* Step 2: the actual photo goes into .ein-hero-visual itself */
.ein-page-shell .ein-hero-visual {
  background: url("../../asset/ein-application-hero.png") right center / cover no-repeat;
  min-height: 430px;
}

/* Step 3: soft left-edge fade on the visual so it blends into the dark left area */
.ein-page-shell .ein-hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg,
      rgba(1,7,22,.88) 0%,
      rgba(1,7,22,.42) 20%,
      transparent      46%);
}

/* Step 4: cert + status badges sit above the fade */
.ein-page-shell .ein-cert {
  z-index: 3;
  right: 48px;
  top: 40px;
}

.ein-page-shell .ein-status {
  z-index: 3;
}

/* CSS-drawn person and laptop stay hidden (photo replaces them) */
.ein-page-shell .ein-person,
.ein-page-shell .ein-laptop {
  display: none !important;
}

/* ── ein-doc-visual: hide all CSS elements, show ein-docs.png ───── */

/* Hide the CSS-drawn document shape and the checklist article */
.ein-page-shell .ein-doc-visual > i,
.ein-page-shell .ein-doc-visual article {
  display: none !important;
}

/* Show the actual image clearly */
.ein-page-shell .ein-doc-visual {
  min-height: 240px;
  background: url("../../asset/ein-docs.png") center / contain no-repeat !important;
}

/* ── ein-ready-visual: hide all CSS elements, show ein-docs.png ─── */

/* Hide the text content inside ready-visual */
.ein-page-shell .ein-ready-visual strong,
.ein-page-shell .ein-ready-visual span,
.ein-page-shell .ein-ready-visual i {
  display: none !important;
}

/* Hide the CSS-drawn clipboard clip and shield decorations */
.ein-page-shell .ein-ready-visual::before,
.ein-page-shell .ein-ready-visual::after {
  display: none !important;
  content: none !important;
}

/* Reposition and show the image filling the right portion of the CTA card */
.ein-page-shell .ein-ready {
  overflow: hidden;
  position: relative;
}

.ein-page-shell .ein-ready-visual {
  position: absolute !important;
  right: 0 !important;
  top: 0 !important;
  bottom: 0 !important;
  left: auto !important;
  width: 46% !important;
  height: 100% !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  background:
    url("../../asset/ein-docs.png") center / contain no-repeat,
    linear-gradient(135deg, rgba(4, 20, 60, .82), rgba(2, 10, 38, .78)) !important;
}

/* Ensure the left text+buttons stay above the image overlay */
.ein-page-shell .ein-ready > div:first-child {
  position: relative;
  z-index: 2;
}

/* ── Mobile: hero visual goes behind text via ::before image ──────── */
/* (mobile was already OK — only override the ::before image path
   and hide hero-visual since the photo is handled by ::before) */
@media (max-width: 979px) {
  /* Restore image in ::before for mobile view */
  .ein-page-shell .ein-hero::before {
    background:
      linear-gradient(90deg, rgba(1,7,22,.98) 0%, rgba(1,7,22,.84) 38%, rgba(1,7,22,.32) 64%, rgba(1,7,22,.06) 86%),
      url("../../asset/ein-application-hero.png") right center / cover no-repeat;
    opacity: .78;
  }

  /* Hide the visual on mobile — ::before handles the image */
  .ein-page-shell .ein-hero-visual {
    background: none !important;
    opacity: 0 !important;
    pointer-events: none;
  }

  /* ein-ready-visual on mobile: stack below text */
  .ein-page-shell .ein-ready-visual {
    position: relative !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    width: 100% !important;
    height: 200px !important;
    margin-top: 18px;
  }
}

/* ================================================================
   EIN FINAL AUTHORITATIVE RULES — overrides all previous patches
   All decorative HTML elements have been removed; this CSS is the
   single source of truth for EIN-specific layout and images.
   ================================================================ */

/* ── 1. HERO: image on right column, no overlays ─────────────── */

/* ::before is a pure text-area gradient — no image, no layers */
.ein-page-shell .ein-hero::before {
  background:
    linear-gradient(90deg,
      rgba(1,7,22,1)   0%,
      rgba(1,7,22,.96) 28%,
      rgba(1,7,22,.62) 50%,
      rgba(1,7,22,.18) 68%,
      transparent      82%) !important;
}

/* Hero visual: the actual hero photo fills the right column */
.ein-page-shell .ein-hero-visual {
  position: relative;
  min-height: 430px;
  background: url("../../asset/ein-application-hero.png") right center / cover no-repeat !important;
  opacity: 1 !important;
}

/* Remove the left-fade overlay — no elements overlap the image */
.ein-page-shell .ein-hero-visual::before {
  display: none !important;
  content: none !important;
}

/* Dead rules — cert and status no longer exist in HTML */
.ein-page-shell .ein-cert,
.ein-page-shell .ein-status,
.ein-page-shell .ein-status-one,
.ein-page-shell .ein-status-two,
.ein-page-shell .ein-status-three,
.ein-page-shell .ein-person,
.ein-page-shell .ein-laptop {
  display: none !important;
}

/* ── 2. EIN-DOCS SECTION: real <img> displayed directly ─────── */

/* Clear all old background-image and decorative CSS on the wrapper */
.ein-page-shell .ein-doc-visual {
  position: relative;
  min-height: 0;
  padding: 24px 16px !important;
  background: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* The real <img> tag */
.ein-page-shell .ein-doc-visual img {
  display: block;
  width: 100%;
  max-width: 360px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 36px rgba(0, 80, 255, .22));
  border-radius: 8px;
}

/* ── 3. BOTTOM-GRID READY SECTION: real <img> displayed ─────── */

/* Reset the ein-ready grid to accommodate a natural-flow image */
.ein-page-shell .ein-ready {
  display: grid !important;
  grid-template-columns: 1fr 220px !important;
  gap: 28px !important;
  align-items: center !important;
  overflow: visible !important;
  position: relative !important;
}

/* Reset ALL absolute positioning set by earlier patches */
.ein-page-shell .ein-ready-visual {
  position: relative !important;
  right: auto !important;
  top: auto !important;
  bottom: auto !important;
  left: auto !important;
  width: auto !important;
  height: auto !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  background: none !important;
  transform: none !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

/* Pseudo-elements from original CSS — ensure fully gone */
.ein-page-shell .ein-ready-visual::before,
.ein-page-shell .ein-ready-visual::after {
  display: none !important;
  content: none !important;
}

/* Hide dead text nodes (belt-and-suspenders, already removed from HTML) */
.ein-page-shell .ein-ready-visual strong,
.ein-page-shell .ein-ready-visual span,
.ein-page-shell .ein-ready-visual i {
  display: none !important;
}

/* The real <img> tag */
.ein-page-shell .ein-ready-visual img {
  display: block;
  width: 100%;
  max-width: 200px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 28px rgba(0, 80, 255, .28));
  border-radius: 6px;
}

/* ── 4. "WHO IS THIS FOR?" — 2-row layout, larger icons ─────── */

/* 3 columns × 2 rows instead of 6 × 1 */
.ein-page-shell .ein-for div {
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 18px !important;
  margin-top: 20px;
}

/* Each item: card-like treatment, vertically stacked icon + label */
.ein-page-shell .ein-for span {
  display: grid !important;
  justify-items: center;
  gap: 14px !important;
  padding: 20px 14px 18px;
  border: 1px solid rgba(0, 160, 255, .16);
  border-radius: 12px;
  background: rgba(0, 90, 255, .06);
  font-size: 14px !important;
  font-weight: 800;
  color: #f2f7ff;
  text-align: center;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.ein-page-shell .ein-for span:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 200, 255, .34);
}

/* Larger icon container */
.ein-page-shell .ein-for svg {
  width: 56px !important;
  height: 56px !important;
  padding: 13px !important;
  border-radius: 50% !important;
  color: var(--cyan) !important;
  background: rgba(0, 141, 255, .14) !important;
  box-shadow: 0 0 22px rgba(0, 198, 255, .18) !important;
}

/* ── 5. RESPONSIVE ───────────────────────────────────────────── */

@media (max-width: 980px) {
  /* Hero: visual becomes faded background behind copy (mobile) */
  .ein-page-shell .ein-hero-visual {
    position: absolute !important;
    inset: 0 !important;
    min-height: 0 !important;
    background: url("../../asset/ein-application-hero.png") right center / cover no-repeat !important;
    opacity: .32 !important;
    mask-image:
      radial-gradient(ellipse at 78% 50%, #000 0%, rgba(0,0,0,.68) 42%, transparent 82%),
      linear-gradient(180deg, transparent 0%, rgba(0,0,0,.72) 14%, #000 46%, rgba(0,0,0,.72) 84%, transparent 100%);
    -webkit-mask-image:
      radial-gradient(ellipse at 78% 50%, #000 0%, rgba(0,0,0,.68) 42%, transparent 82%),
      linear-gradient(180deg, transparent 0%, rgba(0,0,0,.72) 14%, #000 46%, rgba(0,0,0,.72) 84%, transparent 100%);
    mask-composite: intersect;
    -webkit-mask-composite: source-in;
  }

  .ein-page-shell .ein-ready {
    grid-template-columns: 1fr !important;
  }

  .ein-page-shell .ein-ready-visual {
    max-height: 160px;
  }

  .ein-page-shell .ein-ready-visual img {
    max-width: 160px;
  }

  .ein-page-shell .ein-doc-visual img {
    max-width: 280px;
  }
}

@media (max-width: 620px) {
  .ein-page-shell .ein-for div {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }

  .ein-page-shell .ein-for svg {
    width: 48px !important;
    height: 48px !important;
  }

  .ein-page-shell .ein-doc-visual img {
    max-width: 240px;
  }
}

/* ================================================================
   EIN HERO IMAGE — definitive fix
   Real <img> tag, full image visible, nothing clipping or covering it
   ================================================================ */

/* Hero: gradient covers left text area, right column free for image */
.ein-page-shell .ein-hero {
  align-items: center;
  overflow: hidden;
}

/* Remove background-image — the <img> tag handles display now */
.ein-page-shell .ein-hero-visual {
  background: none !important;
  min-height: 0 !important;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: visible;
  /* Remove the fade overlay that was hiding the image */
}

/* Kill the left-fade ::before overlay — nothing is in front of the image */
.ein-page-shell .ein-hero-visual::before {
  display: none !important;
  content: none !important;
}

/* The image itself — full width of the column, natural height, zero cropping */
.ein-page-shell .ein-hero-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center top;
  filter: drop-shadow(0 24px 48px rgba(0, 40, 120, .28));
}

/* ::before is a left-to-right gradient that darkens the copy area */
.ein-page-shell .ein-hero::before {
  background:
    linear-gradient(90deg,
      rgba(1,7,22,1)    0%,
      rgba(1,7,22,.98)  24%,
      rgba(1,7,22,.72)  44%,
      rgba(1,7,22,.22)  62%,
      transparent       76%) !important;
  z-index: -2;
}

/* ── Mobile (≤ 980px): image goes behind copy ──────────────── */
@media (max-width: 980px) {
  .ein-page-shell .ein-hero {
    position: relative;
    grid-template-columns: 1fr !important;
    min-height: clamp(540px, 78vw, 660px);
    align-items: start;
    overflow: hidden;
    padding-top: 42px !important;
  }

  .ein-page-shell .ein-hero-visual {
    position: absolute !important;
    inset: 0 !important;
    z-index: 0;
    justify-content: flex-end;
    align-items: center;
    overflow: hidden;
    opacity: .38;
    mask-image:
      radial-gradient(ellipse at 76% 50%, #000 0%, rgba(0,0,0,.72) 40%, transparent 80%),
      linear-gradient(180deg, transparent 0%, rgba(0,0,0,.75) 15%, #000 46%, rgba(0,0,0,.75) 84%, transparent 100%);
    -webkit-mask-image:
      radial-gradient(ellipse at 76% 50%, #000 0%, rgba(0,0,0,.72) 40%, transparent 80%),
      linear-gradient(180deg, transparent 0%, rgba(0,0,0,.75) 15%, #000 46%, rgba(0,0,0,.75) 84%, transparent 100%);
    mask-composite: intersect;
    -webkit-mask-composite: source-in;
  }

  .ein-page-shell .ein-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right top;
    filter: none;
  }

  /* gradient overlay keeps copy readable */
  .ein-page-shell .ein-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
      linear-gradient(90deg, rgba(1,7,22,.97) 0%, rgba(1,7,22,.9) 42%, rgba(1,7,22,.5) 68%, rgba(1,7,22,.08) 100%),
      linear-gradient(180deg, rgba(1,7,22,.86) 0%, rgba(1,7,22,.44) 44%, rgba(1,7,22,.1) 70%, rgba(1,7,22,.86) 100%);
  }

  .ein-page-shell .ein-hero-copy {
    position: relative;
    z-index: 2;
  }
}

@media (max-width: 620px) {
  .ein-page-shell .ein-hero {
    min-height: 570px;
    padding-top: 32px !important;
  }
}

/* ================================================================
   EIN — overview & docs mobile responsiveness
   Matches the card/icon treatment used throughout other service pages
   ================================================================ */

/* ── SHARED: section padding on mobile ──────────────────────────── */
@media (max-width: 980px) {

  /* ── OVERVIEW (Why You Need an EIN) ─────────────────────────── */
  .ein-page-shell .ein-overview {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    padding: 32px 26px !important;
    align-items: start !important;
    overflow: visible !important;
  }

  /* Flip render order so text + icons appear above the image */
  .ein-page-shell .ein-tablet {
    order: 2;
    max-width: 260px !important;
    height: 172px !important;
    margin: 0 auto !important;
  }

  .ein-page-shell .ein-overview > div:last-child {
    order: 1;
  }

  /* Need-icons: 3-col wrap on tablet — 5 items = 2 clean rows (3+2) */
  .ein-page-shell .ein-need-icons {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 14px !important;
    margin-top: 18px !important;
  }

  /* Card-like treatment to match other service pages */
  .ein-page-shell .ein-need-icons article {
    padding: 18px 12px 14px;
    border: 1px solid rgba(0, 170, 255, .2);
    border-radius: 10px;
    background: rgba(0, 90, 255, .07);
    gap: 12px !important;
    transition: transform 0.22s ease, border-color 0.22s ease;
  }

  .ein-page-shell .ein-need-icons article:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 200, 255, .36);
  }

  /* Larger icon to match other pages */
  .ein-page-shell .ein-need-icons svg {
    width: 50px !important;
    height: 50px !important;
    padding: 11px !important;
  }

  .ein-page-shell .ein-need-icons span {
    font-size: 13px;
    line-height: 1.4;
  }

  /* ── DOCS (What You Need) ────────────────────────────────────── */
  .ein-page-shell .ein-docs {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    padding: 32px 26px !important;
    align-items: start !important;
    overflow: visible !important;
  }

  /* Text is first child in HTML → renders above image — correct */
  .ein-page-shell .ein-doc-visual {
    padding: 8px 0 0 !important;
  }

  .ein-page-shell .ein-doc-visual img {
    max-width: 300px !important;
    margin: 0 auto;
    display: block;
  }
}

/* ── Small mobile (≤ 620px) ─────────────────────────────────────── */
@media (max-width: 620px) {

  /* OVERVIEW */
  .ein-page-shell .ein-overview {
    padding: 22px 18px !important;
    gap: 22px !important;
  }

  .ein-page-shell .ein-tablet {
    max-width: 220px !important;
    height: 148px !important;
  }

  /* Need-icons: 2-col on small mobile */
  .ein-page-shell .ein-need-icons {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  /* 5th item (odd one out) spans both columns, centered */
  .ein-page-shell .ein-need-icons article:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 200px;
    margin: 0 auto;
    width: 100%;
  }

  .ein-page-shell .ein-need-icons article {
    padding: 14px 10px 12px;
  }

  .ein-page-shell .ein-need-icons svg {
    width: 44px !important;
    height: 44px !important;
    padding: 10px !important;
  }

  /* DOCS */
  .ein-page-shell .ein-docs {
    padding: 22px 18px !important;
    gap: 20px !important;
  }

  .ein-page-shell .ein-doc-visual img {
    max-width: 250px !important;
  }

  /* Overview heading and body text */
  .ein-page-shell .ein-overview h2,
  .ein-page-shell .ein-docs h2 {
    font-size: 23px !important;
  }

  .ein-page-shell .ein-overview p,
  .ein-page-shell .ein-docs p {
    font-size: 14px !important;
  }
}

/* ================================================================
   RESALE CERTIFICATE PAGE — section layout + modern animations
   ================================================================ */

/* ── Custom properties & section gap system ──────────────────── */
.resale-page-shell {
  --resale-section-gap: clamp(48px, 7vw, 72px);
  --resale-section-pad-y: clamp(34px, 5vw, 54px);
  --resale-section-pad-x: clamp(22px, 3.2vw, 38px);
  --resale-section-radius: 20px;
}

.resale-main {
  padding-bottom: clamp(56px, 7vw, 88px);
}

.resale-main .container > section {
  position: relative;
  isolation: isolate;
  margin-bottom: 0 !important;
  margin-top: 0 !important;
}

.resale-main .container > section + section {
  margin-top: var(--resale-section-gap) !important;
}

/* Hero: top margin */
.resale-page-shell .resale-hero {
  margin-top: clamp(8px, 2.4vw, 24px) !important;
}

/* ── BOX sections: overview, section (x2), two-grid, testimonials */
.resale-page-shell .resale-overview,
.resale-page-shell .resale-section,
.resale-page-shell .resale-two-grid,
.resale-page-shell .resale-testimonials {
  width: min(100% - 96px, var(--container-narrow-max)) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  border-radius: var(--resale-section-radius) !important;
}

/* resale-overview & resale-section get enhanced dark-card background */
.resale-page-shell .resale-section {
  padding: var(--resale-section-pad-y) var(--resale-section-pad-x);
  border: 1px solid rgba(0, 160, 255, .18);
  background:
    radial-gradient(ellipse at 12% 18%, rgba(0, 155, 255, .14), transparent 20rem),
    radial-gradient(ellipse at 86% 80%, rgba(0, 100, 255, .1), transparent 18rem),
    linear-gradient(145deg, rgba(3, 15, 46, .82), rgba(2, 8, 28, .78));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    0 26px 72px rgba(0, 0, 0, .26);
}

/* two-grid wrapper: subtle container background */
.resale-page-shell .resale-two-grid {
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  gap: 18px;
}

/* testimonials */
.resale-page-shell .resale-testimonials {
  padding: var(--resale-section-pad-y) var(--resale-section-pad-x);
  border: 1px solid rgba(0, 160, 255, .18);
  background:
    radial-gradient(ellipse at 50% 100%, rgba(0, 120, 255, .1), transparent 20rem),
    linear-gradient(145deg, rgba(3, 15, 46, .82), rgba(2, 8, 28, .78));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 26px 72px rgba(0, 0, 0, .26);
}

/* ── FULL-WIDTH: price-compare & final-grid ──────────────────── */
.resale-page-shell .resale-price-compare {
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  border-radius: var(--resale-section-radius) !important;
  outline: 1px solid rgba(255,255,255,.08);
  outline-offset: 10px;
}

.resale-page-shell .resale-final-grid {
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  border-radius: var(--resale-section-radius) !important;
  outline: 1px solid rgba(255,255,255,.08);
  outline-offset: 10px;
}

/* ── KEYFRAMES ───────────────────────────────────────────────── */

@keyframes resaleHeroRise {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes resaleFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33%       { transform: translateY(-10px) rotate(0.4deg); }
  66%       { transform: translateY(-5px) rotate(-0.3deg); }
}

@keyframes resaleSideSlide {
  from { opacity: 0; transform: translateX(28px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes resalePulseGlow {
  0%, 100% { box-shadow: 0 0 0 6px rgba(0,145,255,.18), 0 0 28px rgba(0,145,255,.36); }
  50%       { box-shadow: 0 0 0 10px rgba(0,145,255,.1), 0 0 44px rgba(0,145,255,.52); }
}

@keyframes resaleGradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes resaleFaqSlide {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes resaleSpinSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ── HERO SECTION ENTRANCE ───────────────────────────────────── */

.resale-page-shell .resale-copy {
  animation: resaleHeroRise 0.72s cubic-bezier(.22,.61,.36,1) both;
}

.resale-page-shell .resale-copy .eyebrow      { animation-delay: 0.04s; }
.resale-page-shell .resale-copy h1            { animation-delay: 0.1s; }
.resale-page-shell .resale-copy .hero-subtitle{ animation-delay: 0.18s; }
.resale-page-shell .resale-copy .resale-proof-grid { animation-delay: 0.26s; }
.resale-page-shell .resale-copy .hero-buttons { animation-delay: 0.34s; }

/* Hero art: gentle float loop */
.resale-page-shell .resale-hero-art {
  animation: resaleHeroRise 0.8s cubic-bezier(.22,.61,.36,1) 0.18s both;
}

.resale-page-shell .resale-scene-img {
  display: block;
  width: 100%;
  height: auto;
  animation: resaleFloat 6s ease-in-out infinite 1s;
  filter: drop-shadow(0 22px 44px rgba(0, 80, 220, .28));
  will-change: transform;
}

/* Side benefits: staggered slide from right */
.resale-page-shell .resale-side-benefits article {
  animation: resaleSideSlide 0.6s cubic-bezier(.22,.61,.36,1) both;
  opacity: 0;
}

.resale-page-shell .resale-side-benefits article:nth-child(1) { animation-delay: 0.36s; }
.resale-page-shell .resale-side-benefits article:nth-child(2) { animation-delay: 0.48s; }
.resale-page-shell .resale-side-benefits article:nth-child(3) { animation-delay: 0.60s; }
.resale-page-shell .resale-side-benefits article:nth-child(4) { animation-delay: 0.72s; }

/* Guarantee badge: pulse glow */
.resale-page-shell .resale-price-card em {
  animation: resalePulseGlow 3.2s ease-in-out infinite;
}

/* ── FAQ: smooth open animation ──────────────────────────────── */
.resale-page-shell .resale-faq details[open] p {
  animation: resaleFaqSlide 0.28s cubic-bezier(.22,.61,.36,1) both;
}

.resale-page-shell .resale-faq summary {
  transition: color 0.2s ease;
}

.resale-page-shell .resale-faq details[open] summary {
  color: var(--cyan);
}

/* ── HOVER EFFECTS ───────────────────────────────────────────── */

/* Audience cards: transition for JS 3D tilt */
.resale-page-shell .resale-audience-grid article {
  transition: transform 0.28s cubic-bezier(.2,.8,.2,1), box-shadow 0.28s ease;
  cursor: default;
}

.resale-page-shell .resale-audience-grid article:hover {
  box-shadow:
    0 22px 54px rgba(0, 0, 0, .34),
    0 0 26px rgba(0, 180, 255, .2),
    inset 0 1px 0 rgba(255,255,255,.1);
}

/* Why-grid cards: lift + border glow */
.resale-page-shell .resale-why-grid article {
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.resale-page-shell .resale-why-grid article:hover {
  transform: translateY(-5px);
  box-shadow:
    0 20px 48px rgba(0, 0, 0, .3),
    0 0 24px rgba(0, 180, 255, .18);
  border-color: rgba(0, 200, 255, .36);
}

/* Why-grid icon: glow on hover */
.resale-page-shell .resale-why-grid article:hover .resale-why-grid span svg,
.resale-page-shell .resale-why-grid article:hover span svg {
  filter: drop-shadow(0 0 10px rgba(0, 200, 255, .6));
  transition: filter 0.26s ease;
}

/* Info & process cards: lift */
.resale-page-shell .resale-info-card,
.resale-page-shell .resale-process-card {
  transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.resale-page-shell .resale-info-card:hover,
.resale-page-shell .resale-process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 52px rgba(0, 0, 0, .32), 0 0 26px rgba(0, 160, 255, .15);
}

/* Price card CTA button: shimmer on hover */
.resale-page-shell .resale-price-card .btn-primary {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.resale-page-shell .resale-price-card .btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 32px rgba(0, 100, 255, .36), 0 0 22px rgba(0, 200, 255, .2);
}

/* VS grid compliance/risk panels: subtle lift */
.resale-page-shell .resale-vs-grid > div {
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.resale-page-shell .resale-vs-grid > div:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .28);
}

/* Proof grid spans: subtle color shift on hover */
.resale-page-shell .resale-proof-grid span {
  transition: color 0.2s ease;
  cursor: default;
}

.resale-page-shell .resale-proof-grid span:hover {
  color: var(--cyan);
}

/* ── OVERVIEW IMAGE: ensure it shows cleanly ─────────────────── */
.resale-page-shell .resale-overview-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 32px rgba(0, 80, 200, .24));
  transition: transform 0.4s ease;
}

.resale-page-shell .resale-overview-visual:hover img {
  transform: scale(1.03);
}

/* ── CTA VISUAL IMAGE ────────────────────────────────────────── */
.resale-page-shell .resale-cta-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 28px rgba(0, 80, 200, .22));
}

/* ── FOLDER VISUAL IMAGE ──────────────────────────────────────── */
.resale-page-shell .folder-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 80, 200, .2));
}

/* ── PROCESS STEPS: staggered appearance in scroll reveal ──────── */
.resale-page-shell .resale-process-grid article {
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.resale-page-shell .resale-process-grid article:hover {
  transform: translateY(-4px);
}

/* ── MOBILE: width adjustments for box sections ────────────────── */
@media (max-width: 980px) {
  .resale-page-shell .resale-overview,
  .resale-page-shell .resale-section,
  .resale-page-shell .resale-two-grid,
  .resale-page-shell .resale-testimonials {
    width: min(100% - 36px, 720px) !important;
  }
}

@media (max-width: 620px) {
  .resale-page-shell .resale-overview,
  .resale-page-shell .resale-section,
  .resale-page-shell .resale-two-grid,
  .resale-page-shell .resale-testimonials {
    width: 100% !important;
    border-radius: 14px !important;
  }

  .resale-page-shell .resale-price-compare,
  .resale-page-shell .resale-final-grid {
    border-radius: 14px !important;
  }

  /* Kill float on mobile — reduces motion */
  .resale-page-shell .resale-scene-img {
    animation: none;
  }
}

/* ================================================================
   RESALE — backgrounds for price-compare & final-grid + full mobile fix
   ================================================================ */

/* ── 1. PRICE-COMPARE: vivid deep-blue accent background ────────── */
.resale-page-shell .resale-price-compare {
  padding: var(--resale-section-pad-y) var(--resale-section-pad-x) !important;
  border: 1px solid rgba(0, 185, 255, .44) !important;
  background:
    radial-gradient(circle at 14% 50%, rgba(0, 200, 255, .52), transparent 9rem),
    radial-gradient(circle at 84% 28%, rgba(0, 140, 255, .26), transparent 18rem),
    linear-gradient(110deg, #04236a 0%, #030e3e 52%, #020826 100%) !important;
  box-shadow:
    0 24px 66px rgba(0, 0, 0, .38),
    0 0 44px rgba(0, 160, 255, .22),
    inset 0 1px 0 rgba(255,255,255,.14) !important;
}

/* Sheen overlay */
.resale-page-shell .resale-price-compare::before {
  content: "";
  position: absolute;
  inset: -28% -8%;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 52%, rgba(255,255,255,.14), transparent 15rem),
    repeating-linear-gradient(114deg, rgba(255,255,255,.08) 0 1px, transparent 1px 24px);
  opacity: .36;
  border-radius: inherit;
}

.resale-page-shell .resale-price-compare > * {
  position: relative;
  z-index: 1;
}

/* ── 2. FINAL-GRID: dark card accent for FAQ + CTA ──────────────── */
.resale-page-shell .resale-final-grid {
  padding: var(--resale-section-pad-y) var(--resale-section-pad-x) !important;
  border: 1px solid rgba(0, 150, 255, .34) !important;
  background:
    radial-gradient(circle at 10% 50%, rgba(0, 190, 255, .15), transparent 18rem),
    radial-gradient(circle at 88% 28%, rgba(0, 140, 255, .1), transparent 22rem),
    linear-gradient(145deg, rgba(4, 18, 52, .97), rgba(2, 8, 28, .99)) !important;
  box-shadow:
    0 28px 78px rgba(0, 0, 0, .34),
    0 0 44px rgba(0, 160, 255, .16),
    inset 0 1px 0 rgba(255,255,255,.07) !important;
}

.resale-page-shell .resale-final-grid::before {
  content: "";
  position: absolute;
  inset: -26% -8%;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 22% 50%, rgba(0, 190, 255, .1), transparent 15rem),
    repeating-linear-gradient(112deg, rgba(255,255,255,.06) 0 1px, transparent 1px 24px);
  opacity: .38;
  border-radius: inherit;
}

.resale-page-shell .resale-final-grid > * {
  position: relative;
  z-index: 1;
}

/* ── 3. OVERVIEW BOX: explicit background so it's distinct ──────── */
.resale-page-shell .resale-overview {
  padding: var(--resale-section-pad-y) var(--resale-section-pad-x) !important;
  border: 1px solid rgba(0, 150, 255, .22) !important;
  background:
    radial-gradient(ellipse at 12% 20%, rgba(0, 155, 255, .14), transparent 20rem),
    linear-gradient(145deg, rgba(3, 15, 46, .84), rgba(2, 8, 28, .8)) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 24px 68px rgba(0, 0, 0, .24) !important;
}


/* ================================================================
   MOBILE — comprehensive responsive fix
   ================================================================ */

/* ── Tablet (≤ 980px) ─────────────────────────────────────────── */
@media (max-width: 980px) {

  /* Hero: single column, comfortable padding */
  .resale-page-shell .resale-hero {
    padding: 32px 0 24px;
    gap: 24px;
    align-items: start;
  }

  /* Side-benefits: 2 columns on tablet */
  .resale-page-shell .resale-side-benefits {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
  }

  /* Box sections: narrower */
  .resale-page-shell .resale-overview,
  .resale-page-shell .resale-section,
  .resale-page-shell .resale-two-grid,
  .resale-page-shell .resale-testimonials {
    width: min(100% - 36px, 720px) !important;
  }

  /* Full-width sections: proper padding on tablet */
  .resale-page-shell .resale-price-compare,
  .resale-page-shell .resale-final-grid {
    padding: 28px 24px !important;
  }

  /* Overview: stack image above text */
  .resale-page-shell .resale-overview {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
    padding: 28px 22px !important;
  }

  /* Audience and why grids: 2 columns */
  .resale-page-shell .resale-audience-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 12px !important;
  }

  .resale-page-shell .resale-why-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  /* Two-grid and price-compare: single column */
  .resale-page-shell .resale-two-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .resale-page-shell .resale-price-compare {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* Final grid: single column */
  .resale-page-shell .resale-final-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* CTA section: fix padding on tablet */
  .resale-page-shell .resale-cta {
    min-height: 0;
    padding: 32px 230px 28px 28px !important;
  }

  .resale-page-shell .resale-cta h2 {
    font-size: 25px !important;
  }

  /* Section internal padding adjustments */
  .resale-page-shell .resale-section {
    padding: 28px 22px !important;
  }

  .resale-page-shell .resale-testimonials {
    padding: 28px 22px !important;
  }
}

/* ── Mobile (≤ 620px) ─────────────────────────────────────────── */
@media (max-width: 620px) {

  /* Hero copy */
  .resale-page-shell .resale-copy {
    padding: 0 4px;
  }

  .resale-page-shell .resale-copy h1 {
    font-size: clamp(38px, 10vw, 47px) !important;
    line-height: 1.06;
  }

  .resale-page-shell .resale-copy .hero-subtitle {
    font-size: 15px !important;
    line-height: 1.65;
    max-width: 100%;
  }

  /* Proof grid: 1 col on small mobile */
  .resale-page-shell .resale-proof-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  /* Hero art: disable float animation, scale down */
  .resale-page-shell .resale-scene-img {
    animation: none;
  }

  .resale-page-shell .resale-hero-art {
    max-width: 100%;
    transform: none !important;
    margin-bottom: 0 !important;
  }

  /* Side-benefits: single column */
  .resale-page-shell .resale-side-benefits {
    grid-template-columns: 1fr !important;
    max-width: 100%;
  }

  .resale-page-shell .resale-side-benefits article {
    /* Kill entrance animation on mobile — reduce motion */
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  /* Box sections: full width, smaller radius */
  .resale-page-shell .resale-overview,
  .resale-page-shell .resale-section,
  .resale-page-shell .resale-two-grid,
  .resale-page-shell .resale-testimonials {
    width: 100% !important;
    border-radius: 14px !important;
  }

  .resale-page-shell .resale-price-compare,
  .resale-page-shell .resale-final-grid {
    border-radius: 14px !important;
    padding: 22px 18px !important;
  }

  /* Overview: compact padding */
  .resale-page-shell .resale-overview {
    padding: 22px 18px !important;
  }

  /* Audience grid: 2-col on small mobile */
  .resale-page-shell .resale-audience-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  /* Audience cards: compact on mobile */
  .resale-page-shell .resale-audience-grid article {
    min-height: 150px !important;
    padding: 14px 10px 12px !important;
  }

  /* Why grid: 1 col */
  .resale-page-shell .resale-why-grid {
    grid-template-columns: 1fr !important;
  }

  /* Why-grid articles: horizontal layout on mobile */
  .resale-page-shell .resale-why-grid article {
    grid-template-columns: 46px 1fr;
    gap: 12px;
    align-items: center;
    min-height: 0;
    padding: 16px;
  }

  .resale-page-shell .resale-why-grid h3 {
    margin-bottom: 3px !important;
    font-size: 14px !important;
  }

  .resale-page-shell .resale-why-grid p {
    font-size: 12px !important;
    line-height: 1.45;
  }

  /* Info and process cards: compact */
  .resale-page-shell .resale-info-card,
  .resale-page-shell .resale-process-card {
    padding: 22px 18px !important;
    min-height: 0 !important;
  }

  /* Process grid: vertical on mobile */
  .resale-page-shell .resale-process-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  /* VS grid: single column */
  .resale-page-shell .resale-vs-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .resale-page-shell .resale-vs-grid > b {
    margin: 0 auto;
  }

  /* Price compare: compact */
  .resale-page-shell .resale-price-card,
  .resale-page-shell .resale-compliance-card {
    padding: 20px 18px !important;
    min-height: 0 !important;
  }

  /* CTA: major layout fix on mobile */
  .resale-page-shell .resale-cta {
    padding: 28px 20px 200px !important;
    min-height: 340px;
  }

  .resale-page-shell .resale-cta h2 {
    font-size: 23px !important;
    max-width: 100% !important;
  }

  .resale-page-shell .resale-cta p {
    max-width: 100% !important;
    font-size: 14px !important;
  }

  /* CTA visual image: bottom-centered on mobile. "top: auto" is required
     here because the desktop rule now centers the image vertically with
     "top: 50%" (unconditional) -- without resetting it back to auto,
     top+bottom+height would all be set at once, and the browser resolves
     that by ignoring "bottom" and positioning from "top" instead, pushing
     the image up into the buttons above it. */
  .resale-page-shell .resale-cta-visual {
    top: auto;
    right: 50%;
    bottom: 12px;
    width: 220px;
    height: 170px;
    transform: translateX(50%);
  }

  /* FAQ: comfortable text */
  .resale-page-shell .resale-faq {
    padding: 20px 16px !important;
  }

  .resale-page-shell .resale-faq summary {
    font-size: 14px !important;
    padding-right: 24px;
    min-height: 38px;
  }

  .resale-page-shell .resale-faq p {
    font-size: 13px !important;
    line-height: 1.55;
  }

  /* Testimonials: compact */
  .resale-page-shell .resale-testimonials {
    padding: 22px 18px !important;
  }

  /* Section heading sizes on mobile */
  .resale-page-shell .resale-overview h2,
  .resale-page-shell .resale-section > h2,
  .resale-page-shell .resale-process-card h2,
  .resale-page-shell .resale-info-card h2,
  .resale-page-shell .resale-faq h2 {
    font-size: 23px !important;
    line-height: 1.2;
  }

  .resale-page-shell .resale-section {
    padding: 22px 18px !important;
  }

  .resale-page-shell .resale-testimonials > h2,
  .resale-page-shell .resale-compliance-card h2 {
    font-size: 21px !important;
  }
}

/* ================================================================
   RESALE — final hero + overview mobile polish (homepage-style)
   ================================================================ */

/* Hero scene image: always contained, never cropped/scaled oddly */
.resale-page-shell .resale-scene-img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

/* Overview image: contained, centered */
.resale-page-shell .resale-overview-visual img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 420px;
  margin: 0 auto;
  object-fit: contain;
}

@media (max-width: 980px) {
  /* Hero: homepage-style — scene image goes BEHIND, copy comes forward */
  .resale-page-shell .resale-hero {
    position: relative;
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    min-height: clamp(520px, 88vw, 640px);
    padding: 36px 0 28px !important;
    align-items: start !important;
    overflow: hidden;
  }

  /* Scene image: absolute behind everything, faded + masked */
  .resale-page-shell .resale-hero-art {
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;
    min-height: 0 !important;
    max-width: none !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    transform: none !important;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    pointer-events: none;
    opacity: .4;
    mask-image:
      radial-gradient(ellipse at 78% 48%, #000 0%, rgba(0,0,0,.7) 42%, rgba(0,0,0,.34) 60%, transparent 86%),
      linear-gradient(180deg, transparent 0%, rgba(0,0,0,.72) 14%, #000 44%, rgba(0,0,0,.72) 84%, transparent 100%);
    -webkit-mask-image:
      radial-gradient(ellipse at 78% 48%, #000 0%, rgba(0,0,0,.7) 42%, rgba(0,0,0,.34) 60%, transparent 86%),
      linear-gradient(180deg, transparent 0%, rgba(0,0,0,.72) 14%, #000 44%, rgba(0,0,0,.72) 84%, transparent 100%);
    mask-composite: intersect;
    -webkit-mask-composite: source-in;
  }

  /* Hide the decorative floor glow behind the text */
  .resale-page-shell .resale-hero-art::before {
    display: none !important;
  }

  .resale-page-shell .resale-scene-img {
    width: auto !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: contain;
    object-position: right center;
    animation: none !important;
    filter: none !important;
  }

  /* Dark gradient overlay so copy stays readable over the image */
  .resale-page-shell .resale-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
      linear-gradient(90deg, rgba(1,7,22,.96) 0%, rgba(1,7,22,.9) 40%, rgba(1,7,22,.5) 66%, rgba(1,7,22,.08) 100%),
      linear-gradient(180deg, rgba(1,7,22,.84) 0%, rgba(1,7,22,.42) 44%, rgba(1,7,22,.12) 70%, rgba(1,7,22,.84) 100%);
  }

  /* Copy and benefit cards come forward */
  .resale-page-shell .resale-copy,
  .resale-page-shell .resale-side-benefits {
    position: relative;
    z-index: 2;
  }

  /* Overview: heading/text first, image below — reads like homepage */
  .resale-page-shell .resale-overview {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    align-items: start !important;
  }

  .resale-page-shell .resale-overview-visual {
    order: 2;
    min-height: 0 !important;
    transform: none !important;
  }

  .resale-page-shell .resale-overview > div:not(.resale-overview-visual) {
    order: 1;
  }
}

@media (max-width: 620px) {
  .resale-page-shell .resale-hero {
    min-height: 600px;
    padding: 28px 0 22px !important;
    gap: 20px !important;
  }

  /* Stronger overlay on phone for text contrast */
  .resale-page-shell .resale-hero::after {
    background:
      linear-gradient(90deg, rgba(1,7,22,.98) 0%, rgba(1,7,22,.93) 44%, rgba(1,7,22,.52) 72%, rgba(1,7,22,.1) 100%),
      linear-gradient(180deg, rgba(1,7,22,.9) 0%, rgba(1,7,22,.4) 46%, rgba(1,7,22,.12) 70%, #020716 100%);
  }

  /* Overview check-list: single column so items don't squash */
  .resale-page-shell .resale-check-grid {
    grid-template-columns: 1fr !important;
    gap: 11px !important;
  }

  .resale-page-shell .resale-overview-visual img {
    max-width: 300px;
  }

  .resale-page-shell .resale-overview p {
    font-size: 14px !important;
    line-height: 1.7;
  }
}

/* ================================================================
   US COMPANY DISSOLUTION — homepage-style section layout,
   hero-behind-text mobile, hover/scroll animations, responsive
   ================================================================ */

.dissolution-page-shell {
  --dis-section-gap: clamp(48px, 7vw, 72px);
  --dis-section-pad-y: clamp(34px, 5vw, 54px);
  --dis-section-pad-x: clamp(22px, 3.2vw, 38px);
  --dis-section-radius: 20px;
}

.dissolution-main {
  padding-bottom: clamp(56px, 7vw, 88px);
}

/* Section gap rhythm */
.dissolution-main .container > section {
  position: relative;
  isolation: isolate;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.dissolution-main .container > section + section {
  margin-top: var(--dis-section-gap) !important;
}

.dissolution-page-shell .dissolution-hero {
  margin-top: clamp(8px, 2.4vw, 24px) !important;
}

/* ── BOX sections: width-constrained, centered ────────────────── */
.dissolution-page-shell .dissolution-overview,
.dissolution-page-shell .dissolution-section,
.dissolution-page-shell .dissolution-before,
.dissolution-page-shell .dissolution-bottom-grid,
.dissolution-page-shell .dissolution-testimonials {
  width: min(100% - 96px, var(--container-narrow-max)) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  border-radius: var(--dis-section-radius) !important;
}

/* Bare sections get an explicit dark panel so they read as distinct */
.dissolution-page-shell .dissolution-section,
.dissolution-page-shell .dissolution-testimonials,
.dissolution-page-shell .dissolution-bottom-grid {
  padding: var(--dis-section-pad-y) var(--dis-section-pad-x) !important;
  border: 1px solid rgba(0, 160, 255, .18);
  background:
    radial-gradient(ellipse at 12% 18%, rgba(0, 155, 255, .13), transparent 20rem),
    radial-gradient(ellipse at 86% 80%, rgba(0, 100, 255, .1), transparent 18rem),
    linear-gradient(145deg, rgba(3, 15, 46, .82), rgba(2, 8, 28, .78));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 26px 72px rgba(0, 0, 0, .26);
}

/* Glass-card box sections: constrain + radius + padding */
.dissolution-page-shell .dissolution-overview,
.dissolution-page-shell .dissolution-before {
  padding: var(--dis-section-pad-y) var(--dis-section-pad-x) !important;
}

/* ── FULL-WIDTH: process (vivid mid-page accent) ──────────────── */
.dissolution-page-shell .dissolution-process {
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  border-radius: var(--dis-section-radius) !important;
  outline: 1px solid rgba(255,255,255,.1);
  outline-offset: 10px;
  border: 1px solid rgba(0, 185, 255, .46) !important;
  background:
    radial-gradient(circle at 14% 50%, rgba(0, 200, 255, .5), transparent 9rem),
    radial-gradient(circle at 82% 30%, rgba(0, 140, 255, .26), transparent 18rem),
    linear-gradient(110deg, #04246a 0%, #03103f 52%, #020a2e 100%) !important;
  box-shadow:
    0 24px 66px rgba(0, 0, 0, .38),
    0 0 44px rgba(0, 160, 255, .22),
    inset 0 1px 0 rgba(255,255,255,.14) !important;
  padding: var(--dis-section-pad-y) var(--dis-section-pad-x) !important;
}

.dissolution-page-shell .dissolution-process::before {
  content: "";
  position: absolute;
  inset: -28% -8%;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 52%, rgba(255,255,255,.16), transparent 15rem),
    repeating-linear-gradient(114deg, rgba(255,255,255,.08) 0 1px, transparent 1px 24px);
  opacity: .34;
  border-radius: inherit;
}

.dissolution-page-shell .dissolution-process > * {
  position: relative;
  z-index: 1;
}

/* ── FULL-WIDTH: final grid (FAQ + CTA) dark accent ───────────── */
.dissolution-page-shell .dissolution-final-grid {
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  border-radius: var(--dis-section-radius) !important;
  outline: 1px solid rgba(255,255,255,.08);
  outline-offset: 10px;
  border: 1px solid rgba(0, 150, 255, .32) !important;
  background:
    radial-gradient(circle at 10% 50%, rgba(0, 190, 255, .14), transparent 18rem),
    radial-gradient(circle at 88% 28%, rgba(0, 140, 255, .1), transparent 22rem),
    linear-gradient(145deg, rgba(4, 18, 52, .96), rgba(2, 8, 28, .98)) !important;
  box-shadow:
    0 28px 78px rgba(0, 0, 0, .34),
    0 0 44px rgba(0, 160, 255, .15),
    inset 0 1px 0 rgba(255,255,255,.07) !important;
  padding: var(--dis-section-pad-y) var(--dis-section-pad-x) !important;
}

.dissolution-page-shell .dissolution-final-grid::before {
  content: "";
  position: absolute;
  inset: -26% -8%;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 22% 50%, rgba(0, 190, 255, .1), transparent 15rem),
    repeating-linear-gradient(112deg, rgba(255,255,255,.06) 0 1px, transparent 1px 24px);
  opacity: .38;
  border-radius: inherit;
}

.dissolution-page-shell .dissolution-final-grid > * {
  position: relative;
  z-index: 1;
}

/* ── TEXT SIZE polish ─────────────────────────────────────────── */
.dissolution-page-shell .dissolution-overview h2,
.dissolution-page-shell .dissolution-section > h2,
.dissolution-page-shell .dissolution-process h2,
.dissolution-page-shell .dissolution-before h2,
.dissolution-page-shell .dissolution-testimonials > h2 {
  font-size: clamp(21px, 2.6vw, 30px) !important;
}

.dissolution-page-shell .dissolution-overview p {
  font-size: 15px !important;
  line-height: 1.7;
}

.dissolution-page-shell .dissolution-check-grid,
.dissolution-page-shell .dissolution-before .ra-check-list {
  font-size: 14px !important;
}

.dissolution-page-shell .dissolution-included-grid h3 {
  font-size: 15px !important;
}

.dissolution-page-shell .dissolution-included-grid p {
  font-size: 13px !important;
  line-height: 1.55;
}

.dissolution-page-shell .dissolution-side-benefits b {
  font-size: 13px !important;
}

.dissolution-page-shell .dissolution-side-benefits small {
  font-size: 11px !important;
}

.dissolution-page-shell .dissolution-faq summary {
  font-size: 14px !important;
}

.dissolution-page-shell .dissolution-faq p {
  font-size: 13px !important;
}

/* ── HOVER EFFECTS ────────────────────────────────────────────── */
.dissolution-page-shell .dissolution-included-grid article,
.dissolution-page-shell .dissolution-process article {
  transition: transform 0.28s cubic-bezier(.2,.8,.2,1), box-shadow 0.28s ease;
}

.dissolution-page-shell .dissolution-included-grid article:hover {
  box-shadow:
    0 22px 54px rgba(0, 0, 0, .34),
    0 0 26px rgba(0, 180, 255, .2),
    inset 0 1px 0 rgba(255,255,255,.1);
}

.dissolution-page-shell .dissolution-faq summary {
  transition: color 0.2s ease;
}

.dissolution-page-shell .dissolution-faq details[open] summary {
  color: var(--cyan);
}

.dissolution-page-shell .dissolution-overview-visual img {
  transition: transform 0.4s ease;
}

.dissolution-page-shell .dissolution-overview:hover .dissolution-overview-visual img {
  transform: scale(1.03);
}

/* ── HERO: mobile = image behind text (homepage pattern) ──────── */
@media (max-width: 980px) {
  .dissolution-page-shell .dissolution-hero {
    position: relative;
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    min-height: clamp(520px, 88vw, 640px);
    padding: 36px 0 28px !important;
    align-items: start !important;
    overflow: hidden;
  }

  /* Scene image: absolute behind everything, faded + masked */
  .dissolution-page-shell .dissolution-hero-art {
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;
    min-height: 0 !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    pointer-events: none;
    opacity: .4;
    mask-image:
      radial-gradient(ellipse at 78% 48%, #000 0%, rgba(0,0,0,.7) 42%, rgba(0,0,0,.34) 60%, transparent 86%),
      linear-gradient(180deg, transparent 0%, rgba(0,0,0,.72) 14%, #000 44%, rgba(0,0,0,.72) 84%, transparent 100%);
    -webkit-mask-image:
      radial-gradient(ellipse at 78% 48%, #000 0%, rgba(0,0,0,.7) 42%, rgba(0,0,0,.34) 60%, transparent 86%),
      linear-gradient(180deg, transparent 0%, rgba(0,0,0,.72) 14%, #000 44%, rgba(0,0,0,.72) 84%, transparent 100%);
    mask-composite: intersect;
    -webkit-mask-composite: source-in;
  }

  .dissolution-page-shell .dissolution-hero-art img {
    width: auto !important;
    height: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    object-fit: contain;
    object-position: right center;
    filter: none !important;
  }

  /* Dark overlay for copy legibility */
  .dissolution-page-shell .dissolution-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
      linear-gradient(90deg, rgba(1,7,22,.96) 0%, rgba(1,7,22,.9) 40%, rgba(1,7,22,.5) 66%, rgba(1,7,22,.08) 100%),
      linear-gradient(180deg, rgba(1,7,22,.84) 0%, rgba(1,7,22,.42) 44%, rgba(1,7,22,.12) 70%, rgba(1,7,22,.84) 100%);
  }

  /* Copy and benefit cards come forward */
  .dissolution-page-shell .dissolution-copy,
  .dissolution-page-shell .dissolution-side-benefits {
    position: relative;
    z-index: 2;
  }

  /* Box sections: narrower on tablet */
  .dissolution-page-shell .dissolution-overview,
  .dissolution-page-shell .dissolution-section,
  .dissolution-page-shell .dissolution-before,
  .dissolution-page-shell .dissolution-bottom-grid,
  .dissolution-page-shell .dissolution-testimonials {
    width: min(100% - 36px, 720px) !important;
  }

  /* Overview: text first, image below */
  .dissolution-page-shell .dissolution-overview {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
    align-items: start !important;
  }

  .dissolution-page-shell .dissolution-overview-visual {
    order: 2;
    min-height: 0 !important;
  }

  .dissolution-page-shell .dissolution-overview > div:not(.dissolution-overview-visual) {
    order: 1;
  }

  /* Bottom grid: single column stack */
  .dissolution-page-shell .dissolution-bottom-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* Final grid: single column */
  .dissolution-page-shell .dissolution-final-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* CTA padding fix on tablet */
  .dissolution-page-shell .dissolution-cta {
    padding: 32px 230px 28px 28px !important;
  }
}

@media (max-width: 620px) {
  .dissolution-page-shell .dissolution-hero {
    min-height: 600px;
    padding: 28px 0 22px !important;
  }

  .dissolution-page-shell .dissolution-hero::after {
    background:
      linear-gradient(90deg, rgba(1,7,22,.98) 0%, rgba(1,7,22,.93) 44%, rgba(1,7,22,.52) 72%, rgba(1,7,22,.1) 100%),
      linear-gradient(180deg, rgba(1,7,22,.9) 0%, rgba(1,7,22,.4) 46%, rgba(1,7,22,.12) 70%, #020716 100%);
  }

  .dissolution-page-shell .dissolution-overview,
  .dissolution-page-shell .dissolution-section,
  .dissolution-page-shell .dissolution-before,
  .dissolution-page-shell .dissolution-bottom-grid,
  .dissolution-page-shell .dissolution-testimonials {
    width: 100% !important;
    border-radius: 14px !important;
  }

  .dissolution-page-shell .dissolution-process,
  .dissolution-page-shell .dissolution-final-grid {
    border-radius: 14px !important;
  }

  .dissolution-page-shell .dissolution-check-grid {
    grid-template-columns: 1fr !important;
  }

  .dissolution-page-shell .dissolution-overview-visual img {
    max-width: 300px;
  }
}

/* Dissolution — phone CTA override (beats !important tablet rule) */
@media (max-width: 620px) {
  .dissolution-page-shell .dissolution-cta {
    min-height: 360px;
    padding: 28px 20px 200px !important;
    text-align: center;
  }
}

/* ================================================================
   UK TAX FILING — homepage-style section layout, hero-behind-text
   mobile, hover/scroll animations, responsive  (scoped to page)
   ================================================================ */

.uk-tax-page-shell {
  --ukt-gap: clamp(48px, 7vw, 72px);
  --ukt-pad-y: clamp(34px, 5vw, 54px);
  --ukt-pad-x: clamp(22px, 3.2vw, 38px);
  --ukt-radius: 20px;
}

.uk-tax-main {
  padding-bottom: clamp(56px, 7vw, 88px);
}

/* Section gap rhythm */
.uk-tax-main .container > section {
  position: relative;
  isolation: isolate;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.uk-tax-main .container > section + section {
  margin-top: var(--ukt-gap) !important;
}

.uk-tax-page-shell .uk-tax-hero {
  margin-top: clamp(8px, 2.4vw, 24px) !important;
}

/* ── BOX sections: width-constrained, centered ────────────────── */
.uk-tax-page-shell .uk-tax-matters,
.uk-tax-page-shell .uk-tax-services,
.uk-tax-page-shell .uk-tax-split,
.uk-tax-page-shell .uk-tax-pricing-risk,
.uk-tax-page-shell .uk-tax-testimonials {
  width: min(100% - 96px, var(--container-narrow-max)) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  border-radius: var(--ukt-radius) !important;
}

/* Bare grid sections get an explicit dark panel */
.uk-tax-page-shell .uk-tax-services,
.uk-tax-page-shell .uk-tax-testimonials {
  padding: var(--ukt-pad-y) var(--ukt-pad-x) !important;
  border: 1px solid rgba(0, 160, 255, .18);
  background:
    radial-gradient(ellipse at 12% 18%, rgba(0, 155, 255, .13), transparent 20rem),
    radial-gradient(ellipse at 86% 80%, rgba(0, 100, 255, .1), transparent 18rem),
    linear-gradient(145deg, rgba(3, 15, 46, .82), rgba(2, 8, 28, .78));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 26px 72px rgba(0, 0, 0, .26);
}

/* matters glass-card box: constrain + padding */
.uk-tax-page-shell .uk-tax-matters {
  padding: var(--ukt-pad-y) var(--ukt-pad-x) !important;
}

/* ── FULL-WIDTH: choice (vivid mid-page accent) ───────────────── */
.uk-tax-page-shell .uk-tax-choice {
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  border-radius: var(--ukt-radius) !important;
  outline: 1px solid rgba(255,255,255,.1);
  outline-offset: 10px;
  border: 1px solid rgba(0, 185, 255, .46) !important;
  background:
    radial-gradient(circle at 14% 50%, rgba(0, 200, 255, .5), transparent 9rem),
    radial-gradient(circle at 82% 30%, rgba(0, 140, 255, .26), transparent 18rem),
    linear-gradient(110deg, #04246a 0%, #03103f 52%, #020a2e 100%) !important;
  box-shadow:
    0 24px 66px rgba(0, 0, 0, .38),
    0 0 44px rgba(0, 160, 255, .22),
    inset 0 1px 0 rgba(255,255,255,.14) !important;
  padding: var(--ukt-pad-y) var(--ukt-pad-x) !important;
}

.uk-tax-page-shell .uk-tax-choice::after {
  content: "";
  position: absolute;
  inset: -28% -8%;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 52%, rgba(255,255,255,.16), transparent 15rem),
    repeating-linear-gradient(114deg, rgba(255,255,255,.08) 0 1px, transparent 1px 24px);
  opacity: .34;
  border-radius: inherit;
  z-index: -1;
}

.uk-tax-page-shell .uk-tax-choice > * {
  position: relative;
  z-index: 1;
}

/* ── FULL-WIDTH: final grid (FAQ + CTA) dark accent ───────────── */
.uk-tax-page-shell .uk-tax-final-grid {
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  border-radius: var(--ukt-radius) !important;
  outline: 1px solid rgba(255,255,255,.08);
  outline-offset: 10px;
  border: 1px solid rgba(0, 150, 255, .32) !important;
  background:
    radial-gradient(circle at 10% 50%, rgba(0, 190, 255, .14), transparent 18rem),
    radial-gradient(circle at 88% 28%, rgba(0, 140, 255, .1), transparent 22rem),
    linear-gradient(145deg, rgba(4, 18, 52, .96), rgba(2, 8, 28, .98)) !important;
  box-shadow:
    0 28px 78px rgba(0, 0, 0, .34),
    0 0 44px rgba(0, 160, 255, .15),
    inset 0 1px 0 rgba(255,255,255,.07) !important;
  padding: var(--ukt-pad-y) var(--ukt-pad-x) !important;
}

.uk-tax-page-shell .uk-tax-final-grid::after {
  content: "";
  position: absolute;
  inset: -26% -8%;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 22% 50%, rgba(0, 190, 255, .1), transparent 15rem),
    repeating-linear-gradient(112deg, rgba(255,255,255,.06) 0 1px, transparent 1px 24px);
  opacity: .38;
  border-radius: inherit;
  z-index: -1;
}

.uk-tax-page-shell .uk-tax-final-grid > * {
  position: relative;
  z-index: 1;
}

/* ── TEXT SIZE polish ─────────────────────────────────────────── */
.uk-tax-page-shell .uk-tax-matters h2,
.uk-tax-page-shell .uk-tax-services h2,
.uk-tax-page-shell .uk-tax-choice h2,
.uk-tax-page-shell .uk-tax-risk h2,
.uk-tax-page-shell .uk-tax-testimonials h2,
.uk-tax-page-shell .uk-tax-needed h2,
.uk-tax-page-shell .uk-tax-process h2 {
  font-size: clamp(21px, 2.6vw, 29px) !important;
}

.uk-tax-page-shell .uk-tax-matters h3,
.uk-tax-page-shell .uk-tax-service-grid h3,
.uk-tax-page-shell .uk-tax-choice h3,
.uk-tax-page-shell .uk-tax-process h3 {
  font-size: 15px !important;
}

.uk-tax-page-shell .uk-tax-matters p,
.uk-tax-page-shell .uk-tax-service-grid p,
.uk-tax-page-shell .uk-tax-choice p,
.uk-tax-page-shell .uk-tax-process p {
  font-size: 13px !important;
  line-height: 1.55;
}

.uk-tax-page-shell .uk-tax-needed .ra-check-list {
  font-size: 14px !important;
}

.uk-tax-page-shell .tax-faq summary {
  font-size: 14px !important;
}

.uk-tax-page-shell .tax-faq p {
  font-size: 13px !important;
}

/* ── HOVER EFFECTS ────────────────────────────────────────────── */
.uk-tax-page-shell .uk-tax-service-grid article,
.uk-tax-page-shell .uk-tax-choice article,
.uk-tax-page-shell .uk-tax-matters article {
  transition: transform 0.28s cubic-bezier(.2,.8,.2,1), box-shadow 0.28s ease;
}

.uk-tax-page-shell .uk-tax-service-grid article:hover {
  transform: translateY(-5px);
  box-shadow:
    0 22px 54px rgba(0, 0, 0, .34),
    0 0 26px rgba(0, 180, 255, .2),
    inset 0 1px 0 rgba(255,255,255,.1);
}

.uk-tax-page-shell .tax-faq summary {
  transition: color 0.2s ease;
}

.uk-tax-page-shell .tax-faq details[open] summary {
  color: var(--cyan);
}

.uk-tax-page-shell .uk-tax-needed img {
  transition: transform 0.4s ease;
}

.uk-tax-page-shell .uk-tax-needed:hover img {
  transform: scale(1.03);
}

/* ── HERO: mobile = image behind text (homepage pattern) ──────── */
@media (max-width: 980px) {
  .uk-tax-page-shell .uk-tax-hero {
    position: relative;
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    min-height: clamp(520px, 88vw, 640px);
    padding: 36px 0 28px !important;
    align-items: start !important;
    overflow: hidden;
  }

  /* Hero art: absolute behind everything, faded + masked */
  .uk-tax-page-shell .uk-tax-hero-art {
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;
    min-height: 0 !important;
    pointer-events: none;
    opacity: .4;
    mask-image:
      radial-gradient(ellipse at 78% 48%, #000 0%, rgba(0,0,0,.7) 42%, rgba(0,0,0,.34) 60%, transparent 86%),
      linear-gradient(180deg, transparent 0%, rgba(0,0,0,.72) 14%, #000 44%, rgba(0,0,0,.72) 84%, transparent 100%);
    -webkit-mask-image:
      radial-gradient(ellipse at 78% 48%, #000 0%, rgba(0,0,0,.7) 42%, rgba(0,0,0,.34) 60%, transparent 86%),
      linear-gradient(180deg, transparent 0%, rgba(0,0,0,.72) 14%, #000 44%, rgba(0,0,0,.72) 84%, transparent 100%);
    mask-composite: intersect;
    -webkit-mask-composite: source-in;
  }

  /* Hide the decorative bar-chart glyph behind text */
  .uk-tax-page-shell .uk-tax-hero-art::before {
    display: none !important;
  }

  .uk-tax-page-shell .uk-tax-hero-art img {
    position: absolute !important;
    inset: 0 0 0 auto !important;
    width: auto !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: contain;
    object-position: right center;
    filter: none !important;
  }

  /* Dark overlay for copy legibility */
  .uk-tax-page-shell .uk-tax-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
      linear-gradient(90deg, rgba(1,7,22,.96) 0%, rgba(1,7,22,.9) 40%, rgba(1,7,22,.5) 66%, rgba(1,7,22,.08) 100%),
      linear-gradient(180deg, rgba(1,7,22,.84) 0%, rgba(1,7,22,.42) 44%, rgba(1,7,22,.12) 70%, rgba(1,7,22,.84) 100%);
  }

  .uk-tax-page-shell .uk-tax-copy {
    position: relative;
    z-index: 2;
  }

  /* Box sections: narrower on tablet */
  .uk-tax-page-shell .uk-tax-matters,
  .uk-tax-page-shell .uk-tax-services,
  .uk-tax-page-shell .uk-tax-split,
  .uk-tax-page-shell .uk-tax-pricing-risk,
  .uk-tax-page-shell .uk-tax-testimonials {
    width: min(100% - 36px, 720px) !important;
  }

  /* Split & pricing-risk single column */
  .uk-tax-page-shell .uk-tax-split,
  .uk-tax-page-shell .uk-tax-pricing-risk {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* Final grid single column */
  .uk-tax-page-shell .uk-tax-final-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* Needed card: text first, image below */
  .uk-tax-page-shell .uk-tax-needed {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 18px;
  }

  .uk-tax-page-shell .uk-tax-needed img {
    max-width: 360px;
    margin: 0 auto;
  }
}

@media (max-width: 620px) {
  .uk-tax-page-shell .uk-tax-hero {
    min-height: 600px;
    padding: 28px 0 22px !important;
  }

  .uk-tax-page-shell .uk-tax-hero::after {
    background:
      linear-gradient(90deg, rgba(1,7,22,.98) 0%, rgba(1,7,22,.93) 44%, rgba(1,7,22,.52) 72%, rgba(1,7,22,.1) 100%),
      linear-gradient(180deg, rgba(1,7,22,.9) 0%, rgba(1,7,22,.4) 46%, rgba(1,7,22,.12) 70%, #020716 100%);
  }

  .uk-tax-page-shell .uk-tax-matters,
  .uk-tax-page-shell .uk-tax-services,
  .uk-tax-page-shell .uk-tax-split,
  .uk-tax-page-shell .uk-tax-pricing-risk,
  .uk-tax-page-shell .uk-tax-testimonials {
    width: 100% !important;
    border-radius: 14px !important;
  }

  .uk-tax-page-shell .uk-tax-choice,
  .uk-tax-page-shell .uk-tax-final-grid {
    border-radius: 14px !important;
  }
}

/* ================================================================
   UK COMPANY DISSOLUTION — homepage-style section layout,
   hero-behind-text mobile, hover/scroll animations, responsive.
   Scoped to .uk-close-page-shell (shared classes w/ UK address page)
   ================================================================ */

.uk-close-page-shell {
  --ukc-gap: clamp(48px, 7vw, 72px);
  --ukc-pad-y: clamp(34px, 5vw, 54px);
  --ukc-pad-x: clamp(22px, 3.2vw, 38px);
  --ukc-radius: 20px;
}

.uk-close-page-shell .uk-service-main {
  padding-bottom: clamp(56px, 7vw, 88px);
}

/* Section gap rhythm */
.uk-close-page-shell .uk-service-main .container > section {
  position: relative;
  isolation: isolate;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.uk-close-page-shell .uk-service-main .container > section + section {
  margin-top: var(--ukc-gap) !important;
}

/* Keep the "What's Included" title attached to its grid */
.uk-close-page-shell .uk-section-title + .uk-compact-grid {
  margin-top: clamp(18px, 2.4vw, 26px) !important;
}

.uk-close-page-shell .uk-service-hero {
  margin-top: clamp(8px, 2.4vw, 24px) !important;
}

/* ── BOX sections (constrained, centered) ─────────────────────── */
.uk-close-page-shell .uk-info-panel,
.uk-close-page-shell .uk-two-col,
.uk-close-page-shell .uk-three-col,
.uk-close-page-shell .uk-testimonial-section {
  width: min(100% - 96px, var(--container-narrow-max)) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  border-radius: var(--ukc-radius) !important;
}

/* Bare testimonial section gets a dark panel */
.uk-close-page-shell .uk-testimonial-section {
  padding: var(--ukc-pad-y) var(--ukc-pad-x) !important;
  border: 1px solid rgba(0, 160, 255, .18);
  background:
    radial-gradient(ellipse at 50% 100%, rgba(0, 120, 255, .1), transparent 20rem),
    linear-gradient(145deg, rgba(3, 15, 46, .82), rgba(2, 8, 28, .78));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 26px 72px rgba(0, 0, 0, .26);
}

/* info-panel glass box: padding refresh */
.uk-close-page-shell .uk-info-panel {
  padding: var(--ukc-pad-y) var(--ukc-pad-x) !important;
}

/* two-col / three-col stay transparent grids, just constrained */
.uk-close-page-shell .uk-two-col,
.uk-close-page-shell .uk-three-col {
  background: none;
  border: none;
  box-shadow: none;
}

/* ── FULL-WIDTH VIVID: "What's Included" feature band ─────────── */
.uk-close-page-shell .uk-compact-grid.six {
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  border-radius: var(--ukc-radius) !important;
  outline: 1px solid rgba(255,255,255,.1);
  outline-offset: 10px;
  border: 1px solid rgba(0, 185, 255, .46) !important;
  background:
    radial-gradient(circle at 14% 50%, rgba(0, 200, 255, .5), transparent 9rem),
    radial-gradient(circle at 82% 30%, rgba(0, 140, 255, .26), transparent 18rem),
    linear-gradient(110deg, #04246a 0%, #03103f 52%, #020a2e 100%) !important;
  box-shadow:
    0 24px 66px rgba(0, 0, 0, .38),
    0 0 44px rgba(0, 160, 255, .22),
    inset 0 1px 0 rgba(255,255,255,.14) !important;
  padding: var(--ukc-pad-y) var(--ukc-pad-x) !important;
  grid-template-columns: repeat(6, 1fr) !important;
}

.uk-close-page-shell .uk-compact-grid.six::after {
  content: "";
  position: absolute;
  inset: -28% -8%;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 52%, rgba(255,255,255,.14), transparent 15rem),
    repeating-linear-gradient(114deg, rgba(255,255,255,.07) 0 1px, transparent 1px 24px);
  opacity: .32;
  border-radius: inherit;
  z-index: -1;
}

.uk-close-page-shell .uk-compact-grid.six > article {
  position: relative;
  z-index: 1;
}

/* ── FULL-WIDTH DARK: bottom grid (FAQ + CTA) ─────────────────── */
.uk-close-page-shell .uk-bottom-grid {
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  border-radius: var(--ukc-radius) !important;
  outline: 1px solid rgba(255,255,255,.08);
  outline-offset: 10px;
  border: 1px solid rgba(0, 150, 255, .32) !important;
  background:
    radial-gradient(circle at 10% 50%, rgba(0, 190, 255, .14), transparent 18rem),
    radial-gradient(circle at 88% 28%, rgba(0, 140, 255, .1), transparent 22rem),
    linear-gradient(145deg, rgba(4, 18, 52, .96), rgba(2, 8, 28, .98)) !important;
  box-shadow:
    0 28px 78px rgba(0, 0, 0, .34),
    0 0 44px rgba(0, 160, 255, .15),
    inset 0 1px 0 rgba(255,255,255,.07) !important;
  padding: var(--ukc-pad-y) var(--ukc-pad-x) !important;
}

.uk-close-page-shell .uk-bottom-grid::after {
  content: "";
  position: absolute;
  inset: -26% -8%;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 22% 50%, rgba(0, 190, 255, .1), transparent 15rem),
    repeating-linear-gradient(112deg, rgba(255,255,255,.06) 0 1px, transparent 1px 24px);
  opacity: .38;
  border-radius: inherit;
  z-index: -1;
}

.uk-close-page-shell .uk-bottom-grid > * {
  position: relative;
  z-index: 1;
}

/* ── TEXT SIZE polish ─────────────────────────────────────────── */
.uk-close-page-shell .uk-info-panel h2,
.uk-close-page-shell .uk-section-title h2,
.uk-close-page-shell .uk-list-card h2,
.uk-close-page-shell .uk-process-card h2,
.uk-close-page-shell .uk-why-small h2,
.uk-close-page-shell .uk-risk-card h2,
.uk-close-page-shell .uk-testimonial-section h2 {
  font-size: clamp(21px, 2.6vw, 29px) !important;
}

.uk-close-page-shell .uk-compact-grid p,
.uk-close-page-shell .uk-why-small p,
.uk-close-page-shell .uk-reason-grid p,
.uk-close-page-shell .uk-process-mini p {
  font-size: 13px !important;
  line-height: 1.55;
}

.uk-close-page-shell .uk-compact-grid h3 {
  font-size: 16px !important;
}

.uk-close-page-shell .boi-faq summary {
  font-size: 14px !important;
}

.uk-close-page-shell .boi-faq p {
  font-size: 13px !important;
}

/* ── HOVER EFFECTS ────────────────────────────────────────────── */
.uk-close-page-shell .uk-compact-grid article,
.uk-close-page-shell .uk-reason-grid article {
  transition: transform 0.28s cubic-bezier(.2,.8,.2,1), box-shadow 0.28s ease;
}

.uk-close-page-shell .uk-compact-grid article:hover {
  transform: translateY(-5px);
  box-shadow:
    0 22px 54px rgba(0, 0, 0, .34),
    0 0 26px rgba(0, 200, 255, .24),
    inset 0 1px 0 rgba(255,255,255,.1);
}

.uk-close-page-shell .quote-card {
  transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.uk-close-page-shell .quote-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, .3), 0 0 22px rgba(0, 160, 255, .14);
}

.uk-close-page-shell .boi-faq summary {
  transition: color 0.2s ease;
}

.uk-close-page-shell .boi-faq details[open] summary {
  color: var(--cyan);
}

.uk-close-page-shell .uk-info-image img {
  transition: transform 0.4s ease;
}

.uk-close-page-shell .uk-info-panel:hover .uk-info-image img {
  transform: scale(1.03);
}

/* ── HERO: mobile = image behind text (homepage pattern) ──────── */
@media (max-width: 980px) {
  .uk-close-page-shell .uk-service-hero {
    position: relative;
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    min-height: clamp(520px, 88vw, 640px);
    padding: 36px 0 28px !important;
    align-items: start !important;
    overflow: hidden;
  }

  .uk-close-page-shell .uk-hero-image {
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;
    min-height: 0 !important;
    justify-content: flex-end;
    align-items: center;
    overflow: hidden;
    pointer-events: none;
    opacity: .4;
    mask-image:
      radial-gradient(ellipse at 78% 48%, #000 0%, rgba(0,0,0,.7) 42%, rgba(0,0,0,.34) 60%, transparent 86%),
      linear-gradient(180deg, transparent 0%, rgba(0,0,0,.72) 14%, #000 44%, rgba(0,0,0,.72) 84%, transparent 100%);
    -webkit-mask-image:
      radial-gradient(ellipse at 78% 48%, #000 0%, rgba(0,0,0,.7) 42%, rgba(0,0,0,.34) 60%, transparent 86%),
      linear-gradient(180deg, transparent 0%, rgba(0,0,0,.72) 14%, #000 44%, rgba(0,0,0,.72) 84%, transparent 100%);
    mask-composite: intersect;
    -webkit-mask-composite: source-in;
  }

  .uk-close-page-shell .uk-hero-image img {
    width: auto !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: contain;
    object-position: right center;
    filter: none !important;
  }

  /* Dark overlay for copy legibility */
  .uk-close-page-shell .uk-service-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
      linear-gradient(90deg, rgba(1,7,22,.96) 0%, rgba(1,7,22,.9) 40%, rgba(1,7,22,.5) 66%, rgba(1,7,22,.08) 100%),
      linear-gradient(180deg, rgba(1,7,22,.84) 0%, rgba(1,7,22,.42) 44%, rgba(1,7,22,.12) 70%, rgba(1,7,22,.84) 100%);
  }

  .uk-close-page-shell .uk-service-copy {
    position: relative;
    z-index: 2;
  }

  /* Box sections narrower on tablet */
  .uk-close-page-shell .uk-info-panel,
  .uk-close-page-shell .uk-two-col,
  .uk-close-page-shell .uk-three-col,
  .uk-close-page-shell .uk-testimonial-section {
    width: min(100% - 36px, 720px) !important;
  }

  /* Stacks */
  .uk-close-page-shell .uk-two-col,
  .uk-close-page-shell .uk-three-col,
  .uk-close-page-shell .uk-bottom-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* Feature band: 3 columns on tablet */
  .uk-close-page-shell .uk-compact-grid.six {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  /* info-panel: image above, text below */
  .uk-close-page-shell .uk-info-panel {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }

  .uk-close-page-shell .uk-info-image {
    order: 2;
  }

  .uk-close-page-shell .uk-info-panel > div:not(.uk-info-image) {
    order: 1;
  }
}

@media (max-width: 620px) {
  .uk-close-page-shell .uk-service-hero {
    min-height: 600px;
    padding: 28px 0 22px !important;
  }

  .uk-close-page-shell .uk-service-hero::after {
    background:
      linear-gradient(90deg, rgba(1,7,22,.98) 0%, rgba(1,7,22,.93) 44%, rgba(1,7,22,.52) 72%, rgba(1,7,22,.1) 100%),
      linear-gradient(180deg, rgba(1,7,22,.9) 0%, rgba(1,7,22,.4) 46%, rgba(1,7,22,.12) 70%, #020716 100%);
  }

  .uk-close-page-shell .uk-info-panel,
  .uk-close-page-shell .uk-two-col,
  .uk-close-page-shell .uk-three-col,
  .uk-close-page-shell .uk-testimonial-section {
    width: 100% !important;
    border-radius: 14px !important;
  }

  .uk-close-page-shell .uk-compact-grid.six,
  .uk-close-page-shell .uk-bottom-grid {
    border-radius: 14px !important;
  }

  /* Feature band: 2 columns on phone */
  .uk-close-page-shell .uk-compact-grid.six {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .uk-close-page-shell .uk-compact-grid article {
    min-height: 0 !important;
    padding: 18px 12px !important;
  }
}

/* ================================================================
   UK REGISTERED OFFICE ADDRESS — real images, homepage-style
   section layout, hero-behind-text mobile, animations.
   Scoped to .uk-address-page-shell (shared classes w/ UK pages)
   ================================================================ */

.uk-address-page-shell {
  --uka-gap: clamp(48px, 7vw, 72px);
  --uka-pad-y: clamp(34px, 5vw, 54px);
  --uka-pad-x: clamp(22px, 3.2vw, 38px);
  --uka-radius: 20px;
}

.uk-address-page-shell .uk-service-main {
  padding-bottom: clamp(56px, 7vw, 88px);
}

/* Section gap rhythm */
.uk-address-page-shell .uk-service-main .container > section {
  position: relative;
  isolation: isolate;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.uk-address-page-shell .uk-service-main .container > section + section {
  margin-top: var(--uka-gap) !important;
}

/* "Why You Need a Registered Office Address?" now lives inside the same
   <section> as the 6-card feature band below it (previously two separate
   <section> elements -- a small centered heading card followed by its
   own full-width vivid card -- which read as two stacked sections with a
   visible seam between them). The heading spans the full grid row above
   the cards so the whole thing reads as one continuous surface with a
   clear heading-then-cards hierarchy inside it. */
.uk-address-page-shell .uk-compact-grid.six > .uk-compact-grid-heading {
  grid-column: 1 / -1;
  margin: 0 0 8px;
  text-align: center;
}

.uk-address-page-shell .uk-compact-grid.six > .uk-compact-grid-heading span {
  color: var(--cyan);
}

.uk-address-page-shell .uk-service-hero {
  margin-top: clamp(8px, 2.4vw, 24px) !important;
}

/* ── REAL IMAGES — display cleanly ────────────────────────────── */
.uk-address-page-shell .uk-address-visual {
  position: relative;
  min-height: 405px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.uk-address-page-shell .uk-address-visual img {
  display: block;
  width: 106%;
  max-width: none;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 46px rgba(0, 0, 0, .34));
}

.uk-address-page-shell .uk-info-image {
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.uk-address-page-shell .uk-info-image img {
  width: 100%;
  max-width: 360px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(0, 89, 255, .22));
  transition: transform 0.4s ease;
}

.uk-address-page-shell .address-included-visual,
.uk-address-page-shell .address-cta-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.uk-address-page-shell .address-included-visual img {
  display: block;
  width: 100%;
  max-width: 440px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 36px rgba(0, 90, 200, .26));
}

.uk-address-page-shell .address-cta-visual img {
  display: block;
  width: 100%;
  max-width: 230px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 30px rgba(0, 90, 200, .3));
}

/* ── BOX sections (constrained, centered) ─────────────────────── */
.uk-address-page-shell .uk-info-panel,
.uk-address-page-shell .address-included,
.uk-address-page-shell .address-steps,
.uk-address-page-shell .uk-three-col {
  width: min(100% - 96px, var(--container-narrow-max)) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  border-radius: var(--uka-radius) !important;
}

.uk-address-page-shell .uk-info-panel,
.uk-address-page-shell .address-included,
.uk-address-page-shell .address-steps {
  padding: var(--uka-pad-y) var(--uka-pad-x) !important;
}

/* three-col stays a transparent grid of glass cards */
.uk-address-page-shell .uk-three-col {
  background: none;
  border: none;
  box-shadow: none;
}

/* ── FULL-WIDTH VIVID: "Why You Need" feature band ────────────── */
.uk-address-page-shell .uk-compact-grid.six {
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  border-radius: var(--uka-radius) !important;
  outline: 1px solid rgba(255,255,255,.1);
  outline-offset: 10px;
  border: 1px solid rgba(0, 185, 255, .46) !important;
  background:
    radial-gradient(circle at 14% 50%, rgba(0, 200, 255, .5), transparent 9rem),
    radial-gradient(circle at 82% 30%, rgba(0, 140, 255, .26), transparent 18rem),
    linear-gradient(110deg, #04246a 0%, #03103f 52%, #020a2e 100%) !important;
  box-shadow:
    0 24px 66px rgba(0, 0, 0, .38),
    0 0 44px rgba(0, 160, 255, .22),
    inset 0 1px 0 rgba(255,255,255,.14) !important;
  padding: var(--uka-pad-y) var(--uka-pad-x) !important;
  grid-template-columns: repeat(6, 1fr) !important;
}

.uk-address-page-shell .uk-compact-grid.six::after {
  content: "";
  position: absolute;
  inset: -28% -8%;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 52%, rgba(255,255,255,.14), transparent 15rem),
    repeating-linear-gradient(114deg, rgba(255,255,255,.07) 0 1px, transparent 1px 24px);
  opacity: .32;
  border-radius: inherit;
  z-index: -1;
}

.uk-address-page-shell .uk-compact-grid.six > article {
  position: relative;
  z-index: 1;
}

/* ── FULL-WIDTH DARK: bottom grid (FAQ + CTA) ─────────────────── */
.uk-address-page-shell .uk-bottom-grid {
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  border-radius: var(--uka-radius) !important;
  outline: 1px solid rgba(255,255,255,.08);
  outline-offset: 10px;
  border: 1px solid rgba(0, 150, 255, .32) !important;
  background:
    radial-gradient(circle at 10% 50%, rgba(0, 190, 255, .14), transparent 18rem),
    radial-gradient(circle at 88% 28%, rgba(0, 140, 255, .1), transparent 22rem),
    linear-gradient(145deg, rgba(4, 18, 52, .96), rgba(2, 8, 28, .98)) !important;
  box-shadow:
    0 28px 78px rgba(0, 0, 0, .34),
    0 0 44px rgba(0, 160, 255, .15),
    inset 0 1px 0 rgba(255,255,255,.07) !important;
  padding: var(--uka-pad-y) var(--uka-pad-x) !important;
}

.uk-address-page-shell .uk-bottom-grid::after {
  content: "";
  position: absolute;
  inset: -26% -8%;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 22% 50%, rgba(0, 190, 255, .1), transparent 15rem),
    repeating-linear-gradient(112deg, rgba(255,255,255,.06) 0 1px, transparent 1px 24px);
  opacity: .38;
  border-radius: inherit;
  z-index: -1;
}

.uk-address-page-shell .uk-bottom-grid > * {
  position: relative;
  z-index: 1;
}

/* ── TEXT SIZE polish ─────────────────────────────────────────── */
.uk-address-page-shell .uk-info-panel h2,
.uk-address-page-shell .uk-compact-grid.six > .uk-compact-grid-heading,
.uk-address-page-shell .address-included h2,
.uk-address-page-shell .address-steps h2,
.uk-address-page-shell .uk-why-small h2,
.uk-address-page-shell .uk-price-card h2 {
  font-size: clamp(21px, 2.6vw, 29px) !important;
}

.uk-address-page-shell .uk-compact-grid p,
.uk-address-page-shell .uk-why-small p,
.uk-address-page-shell .address-benefit-row p {
  font-size: 13px !important;
  line-height: 1.55;
}

.uk-address-page-shell .uk-compact-grid h3 {
  font-size: 16px !important;
}

.uk-address-page-shell .boi-faq summary {
  font-size: 14px !important;
}

.uk-address-page-shell .boi-faq p {
  font-size: 13px !important;
}

/* ── HOVER EFFECTS ────────────────────────────────────────────── */
.uk-address-page-shell .uk-compact-grid article,
.uk-address-page-shell .address-benefit-row article {
  transition: transform 0.28s cubic-bezier(.2,.8,.2,1), box-shadow 0.28s ease;
}

.uk-address-page-shell .uk-compact-grid article:hover {
  transform: translateY(-5px);
  box-shadow:
    0 22px 54px rgba(0, 0, 0, .34),
    0 0 26px rgba(0, 200, 255, .24),
    inset 0 1px 0 rgba(255,255,255,.1);
}

.uk-address-page-shell .uk-info-panel:hover .uk-info-image img {
  transform: scale(1.03);
}

.uk-address-page-shell .boi-faq summary {
  transition: color 0.2s ease;
}

.uk-address-page-shell .boi-faq details[open] summary {
  color: var(--cyan);
}

/* ── HERO: mobile = image behind text (homepage pattern) ──────── */
@media (max-width: 980px) {
  .uk-address-page-shell .uk-service-hero {
    position: relative;
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    min-height: clamp(520px, 88vw, 640px);
    padding: 36px 0 28px !important;
    align-items: start !important;
    overflow: hidden;
  }

  .uk-address-page-shell .uk-address-visual {
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;
    min-height: 0 !important;
    justify-content: flex-end;
    align-items: center;
    overflow: hidden;
    pointer-events: none;
    opacity: .1;
    mask-image:
      radial-gradient(ellipse at 78% 48%, #000 0%, rgba(0,0,0,.7) 42%, rgba(0,0,0,.34) 60%, transparent 86%),
      linear-gradient(180deg, transparent 0%, rgba(0,0,0,.72) 14%, #000 44%, rgba(0,0,0,.72) 84%, transparent 100%);
    -webkit-mask-image:
      radial-gradient(ellipse at 78% 48%, #000 0%, rgba(0,0,0,.7) 42%, rgba(0,0,0,.34) 60%, transparent 86%),
      linear-gradient(180deg, transparent 0%, rgba(0,0,0,.72) 14%, #000 44%, rgba(0,0,0,.72) 84%, transparent 100%);
    mask-composite: intersect;
    -webkit-mask-composite: source-in;
  }

  .uk-address-page-shell .uk-address-visual img {
    width: auto !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: contain;
    object-position: right center;
    filter: none !important;
  }

  .uk-address-page-shell .uk-service-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
      linear-gradient(90deg, rgba(1,7,22,.96) 0%, rgba(1,7,22,.9) 40%, rgba(1,7,22,.5) 66%, rgba(1,7,22,.08) 100%),
      linear-gradient(180deg, rgba(1,7,22,.84) 0%, rgba(1,7,22,.42) 44%, rgba(1,7,22,.12) 70%, rgba(1,7,22,.84) 100%);
  }

  .uk-address-page-shell .uk-service-copy {
    position: relative;
    z-index: 2;
  }

  /* Box sections narrower on tablet */
  .uk-address-page-shell .uk-info-panel,
  .uk-address-page-shell .address-included,
  .uk-address-page-shell .address-steps,
  .uk-address-page-shell .uk-three-col {
    width: min(100% - 36px, 720px) !important;
  }

  /* Stacks */
  .uk-address-page-shell .uk-three-col,
  .uk-address-page-shell .uk-bottom-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* Feature band: 3 columns on tablet */
  .uk-address-page-shell .uk-compact-grid.six {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  /* info-panel: image above text */
  .uk-address-page-shell .uk-info-panel {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }

  .uk-address-page-shell .uk-info-image {
    order: 2;
  }

  .uk-address-page-shell .uk-info-panel > div:not(.uk-info-image) {
    order: 1;
  }

  /* included: text above image */
  .uk-address-page-shell .address-included {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }

  .uk-address-page-shell .address-included-visual img {
    max-width: 380px;
    margin: 0 auto;
  }

  /* final-cta: stack image below */
  .uk-address-page-shell .address-final-cta {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .uk-address-page-shell .address-cta-visual img {
    max-width: 200px;
    margin: 0 auto;
  }

  /* "3 Simple Steps": the shared .address-step-grid rule (base.css) forces
     3 items into 2 columns at this width, leaving the 3rd step orphaned
     in the left column with a ragged empty gap beside it. A single
     column lets all three steps scan top-to-bottom as one coherent
     sequence instead, matching the "no horizontal overflow / no awkward
     gaps" requirement for this section specifically. */
  .uk-address-page-shell .address-step-grid {
    grid-template-columns: 1fr !important;
    gap: 30px;
  }

  .uk-address-page-shell .address-step-grid article {
    max-width: 320px;
    margin: 0 auto;
  }

  .uk-address-page-shell .address-step-grid b {
    width: 40px;
    height: 40px;
    font-size: 15px;
  }

  .uk-address-page-shell .address-step-grid svg {
    width: 32px;
    height: 32px;
    margin: 12px 0 8px;
  }

  .uk-address-page-shell .address-step-grid h3 {
    font-size: 16px;
  }

  .uk-address-page-shell .address-step-grid p {
    font-size: 13px;
    line-height: 1.5;
  }
}

@media (max-width: 620px) {
  .uk-address-page-shell .uk-service-hero {
    min-height: 600px;
    padding: 28px 0 22px !important;
  }

  /* override leftover tall mockup height */
  .uk-address-page-shell .uk-address-visual {
    min-height: 0 !important;
  }

  .uk-address-page-shell .uk-service-hero::after {
    background:
      linear-gradient(90deg, rgba(1,7,22,.98) 0%, rgba(1,7,22,.93) 44%, rgba(1,7,22,.52) 72%, rgba(1,7,22,.1) 100%),
      linear-gradient(180deg, rgba(1,7,22,.9) 0%, rgba(1,7,22,.4) 46%, rgba(1,7,22,.12) 70%, #020716 100%);
  }

  .uk-address-page-shell .uk-info-panel,
  .uk-address-page-shell .address-included,
  .uk-address-page-shell .address-steps,
  .uk-address-page-shell .uk-three-col {
    width: 100% !important;
    border-radius: 14px !important;
  }

  .uk-address-page-shell .uk-compact-grid.six,
  .uk-address-page-shell .uk-bottom-grid {
    border-radius: 14px !important;
  }

  /* Feature band: 2 columns on phone */
  .uk-address-page-shell .uk-compact-grid.six {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .uk-address-page-shell .uk-compact-grid article {
    min-height: 0 !important;
    padding: 18px 12px !important;
  }

  /* The hero heading text ("Premium UK Registered Office Address") is
     longer than the homepage's own hero h1, so the shared 41px mobile
     size (set generically for every .uk-service-hero page) still wraps
     to 4 cramped lines on narrow phones. Sized down further here, scoped
     to this page only, so the heading reads like an intentionally-sized
     mobile heading rather than a desktop heading squeezed down. */
  .uk-address-page-shell .uk-service-copy h1 {
    font-size: 33px;
  }
}

/* ================================================================
   UK LTD COMPANY — homepage-style section layout, hero-behind-text
   mobile, hover/scroll animations, responsive (scoped .uk-page-shell)
   ================================================================ */

.uk-page-shell {
  --ukl-gap: clamp(48px, 7vw, 72px);
  --ukl-pad-y: clamp(34px, 5vw, 54px);
  --ukl-pad-x: clamp(22px, 3.2vw, 38px);
  --ukl-radius: 20px;
}

.uk-page-shell main {
  padding-bottom: clamp(56px, 7vw, 88px);
}

/* Section gap rhythm */
.uk-page-shell .container > section {
  position: relative;
  isolation: isolate;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.uk-page-shell .container > section + section {
  margin-top: var(--ukl-gap) !important;
}

/* Heading + grid live in one box; spacing handled by heading margin-bottom */
.uk-page-shell .uk-section-heading + .uk-services-grid {
  margin-top: 0 !important;
}

.uk-page-shell .uk-hero {
  margin-top: clamp(8px, 2.4vw, 24px) !important;
}

/* ── BOX: services grid (subtle dark panel, 3×3) ──────────────── */
.uk-page-shell .uk-services-grid {
  width: min(100% - 96px, var(--container-narrow-max)) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: var(--ukl-pad-y) var(--ukl-pad-x) !important;
  border-radius: var(--ukl-radius) !important;
  border: 1px solid rgba(90, 90, 230, .2);
  background:
    radial-gradient(ellipse at 12% 16%, rgba(70, 90, 255, .14), transparent 20rem),
    radial-gradient(ellipse at 88% 82%, rgba(120, 60, 255, .12), transparent 18rem),
    linear-gradient(145deg, rgba(8, 12, 46, .82), rgba(4, 6, 28, .78));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 26px 72px rgba(0, 0, 0, .26);
}

/* ── BOX: why (glass card, constrained) ───────────────────────── */
.uk-page-shell .uk-why {
  width: min(100% - 96px, var(--container-narrow-max)) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  border-radius: var(--ukl-radius) !important;
  padding: var(--ukl-pad-y) var(--ukl-pad-x) !important;
}

/* ── FULL-WIDTH VIVID: process (blue→violet accent) ───────────── */
.uk-page-shell .uk-process {
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  border-radius: var(--ukl-radius) !important;
  outline: 1px solid rgba(255,255,255,.1);
  outline-offset: 10px;
  border: 1px solid rgba(120, 90, 255, .5) !important;
  background:
    radial-gradient(circle at 14% 50%, rgba(110, 110, 255, .5), transparent 9rem),
    radial-gradient(circle at 82% 30%, rgba(150, 70, 255, .26), transparent 18rem),
    linear-gradient(110deg, #1a1a78 0%, #10103f 52%, #1a0838 100%) !important;
  box-shadow:
    0 24px 66px rgba(0, 0, 0, .38),
    0 0 44px rgba(120, 90, 255, .22),
    inset 0 1px 0 rgba(255,255,255,.14) !important;
  padding: var(--ukl-pad-y) var(--ukl-pad-x) !important;
}

.uk-page-shell .uk-process::after {
  content: "";
  position: absolute;
  inset: -28% -8%;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 52%, rgba(255,255,255,.14), transparent 15rem),
    repeating-linear-gradient(114deg, rgba(255,255,255,.07) 0 1px, transparent 1px 24px);
  opacity: .32;
  border-radius: inherit;
  z-index: -1;
}

.uk-page-shell .uk-process > * {
  position: relative;
  z-index: 1;
}

/* ── FULL-WIDTH: CTA (existing gradient, just radius/outline) ──── */
.uk-page-shell .uk-cta {
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  border-radius: var(--ukl-radius) !important;
  outline: 1px solid rgba(255,255,255,.1);
  outline-offset: 10px;
}

/* ── TEXT SIZE polish ─────────────────────────────────────────── */
.uk-page-shell .uk-section-heading h2,
.uk-page-shell .uk-process h2 {
  font-size: clamp(21px, 2.8vw, 31px) !important;
}

.uk-page-shell .uk-service-card p,
.uk-page-shell .uk-why p,
.uk-page-shell .uk-process-grid p {
  font-size: 13px !important;
  line-height: 1.55;
}

/* ── HOVER EFFECTS ────────────────────────────────────────────── */
.uk-page-shell .uk-why article {
  transition: transform 0.26s ease;
}

.uk-page-shell .uk-process-grid article {
  transition: transform 0.24s ease;
}

.uk-page-shell .uk-process-grid article:hover {
  transform: translateY(-4px);
}

/* ── HERO: mobile = image behind text (homepage pattern) ──────── */
@media (max-width: 980px) {
  .uk-page-shell .uk-hero {
    position: relative;
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    min-height: clamp(520px, 88vw, 640px);
    padding: 36px 0 28px !important;
    align-items: start !important;
    overflow: hidden;
  }

  .uk-page-shell .uk-visual {
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;
    min-height: 0 !important;
    overflow: hidden;
    pointer-events: none;
    opacity: .4;
    mask-image:
      radial-gradient(ellipse at 78% 48%, #000 0%, rgba(0,0,0,.7) 42%, rgba(0,0,0,.34) 60%, transparent 86%),
      linear-gradient(180deg, transparent 0%, rgba(0,0,0,.72) 14%, #000 44%, rgba(0,0,0,.72) 84%, transparent 100%);
    -webkit-mask-image:
      radial-gradient(ellipse at 78% 48%, #000 0%, rgba(0,0,0,.7) 42%, rgba(0,0,0,.34) 60%, transparent 86%),
      linear-gradient(180deg, transparent 0%, rgba(0,0,0,.72) 14%, #000 44%, rgba(0,0,0,.72) 84%, transparent 100%);
    mask-composite: intersect;
    -webkit-mask-composite: source-in;
  }

  .uk-page-shell .uk-visual img {
    position: absolute !important;
    inset: 0 0 0 auto !important;
    width: auto !important;
    height: 100% !important;
    object-fit: cover;
    object-position: right center;
    mask-image: none !important;
    -webkit-mask-image: none !important;
    filter: none !important;
  }

  .uk-page-shell .uk-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
      linear-gradient(90deg, rgba(1,7,22,.96) 0%, rgba(1,7,22,.9) 40%, rgba(1,7,22,.5) 66%, rgba(1,7,22,.08) 100%),
      linear-gradient(180deg, rgba(1,7,22,.84) 0%, rgba(1,7,22,.42) 44%, rgba(1,7,22,.12) 70%, rgba(1,7,22,.84) 100%);
  }

  .uk-page-shell .accounting-hero-copy {
    position: relative;
    z-index: 2;
  }

  /* Box sections narrower on tablet */
  .uk-page-shell .uk-services-grid,
  .uk-page-shell .uk-why {
    width: min(100% - 36px, 720px) !important;
  }

  /* Services grid: 2 columns on tablet */
  .uk-page-shell .uk-services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 620px) {
  .uk-page-shell .uk-hero {
    min-height: 600px;
    padding: 28px 0 22px !important;
  }

  .uk-page-shell .uk-visual {
    min-height: 0 !important;
  }

  .uk-page-shell .uk-hero::after {
    background:
      linear-gradient(90deg, rgba(1,7,22,.98) 0%, rgba(1,7,22,.93) 44%, rgba(1,7,22,.52) 72%, rgba(1,7,22,.1) 100%),
      linear-gradient(180deg, rgba(1,7,22,.9) 0%, rgba(1,7,22,.4) 46%, rgba(1,7,22,.12) 70%, #020716 100%);
  }

  .uk-page-shell .uk-services-grid,
  .uk-page-shell .uk-why {
    width: 100% !important;
    border-radius: 14px !important;
  }

  .uk-page-shell .uk-services-grid {
    grid-template-columns: 1fr !important;
  }

  .uk-page-shell .uk-process,
  .uk-page-shell .uk-cta {
    border-radius: 14px !important;
  }
}

/* ================================================================
   UK LTD — hero image icon, merged services section, uniform hover
   ================================================================ */

/* Hero "Expert Support" — real image icon inside the proof badge */
.uk-page-shell .proof-icon-img {
  overflow: hidden;
  padding: 0;
}

.uk-page-shell .proof-icon-img img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  border-radius: 6px;
}

/* ── Services heading + grid are ONE section (single box) ─────── */
.uk-page-shell .uk-services-section {
  position: relative;
  isolation: isolate;
  width: min(100% - 96px, var(--container-narrow-max)) !important;
  margin: 0 auto !important;
  padding: var(--ukl-pad-y) var(--ukl-pad-x) !important;
  border-radius: var(--ukl-radius);
  border: 1px solid rgba(90, 90, 230, .2);
  background:
    radial-gradient(ellipse at 12% 14%, rgba(70, 90, 255, .14), transparent 20rem),
    radial-gradient(ellipse at 88% 84%, rgba(120, 60, 255, .12), transparent 18rem),
    linear-gradient(145deg, rgba(8, 12, 46, .82), rgba(4, 6, 28, .78));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 26px 72px rgba(0, 0, 0, .26);
}

/* Heading sits at the top of the box */
.uk-page-shell .uk-services-section .uk-section-heading {
  margin: 0 0 clamp(18px, 2.4vw, 28px) !important;
}

/* Inner grid: transparent, 3 columns (the box is the section) */
.uk-page-shell .uk-services-grid {
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  background: none !important;
  box-shadow: none !important;
  outline: none !important;
  grid-template-columns: repeat(3, 1fr) !important;
}

/* ── Uniform hover on ALL 9 service cards (clean lift + glow) ─── */
.uk-page-shell .uk-service-card {
  cursor: default;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease, opacity .55s ease !important;
}

.uk-page-shell .uk-service-card.clickable-card {
  cursor: pointer;
}

.uk-page-shell .uk-service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 190, 255, .5) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.1),
    0 24px 58px rgba(0, 0, 0, .34),
    0 0 30px rgba(0, 190, 255, .18) !important;
}

.uk-page-shell .uk-service-card:hover .round-icon {
  transform: scale(1.1);
}

/* ── Responsive: section width + grid columns ─────────────────── */
@media (max-width: 980px) {
  .uk-page-shell .uk-services-section {
    width: min(100% - 36px, 720px) !important;
  }
  .uk-page-shell .uk-services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 620px) {
  .uk-page-shell .uk-services-section {
    width: 100% !important;
    border-radius: 14px !important;
  }
  .uk-page-shell .uk-services-grid {
    grid-template-columns: 1fr !important;
  }
}

/* UK TAX FILING — give the pricing/risk section a box panel background */
.uk-tax-page-shell .uk-tax-pricing-risk {
  padding: var(--ukt-pad-y) var(--ukt-pad-x) !important;
  border: 1px solid rgba(0, 160, 255, .18);
  background:
    radial-gradient(ellipse at 12% 18%, rgba(0, 155, 255, .13), transparent 20rem),
    radial-gradient(ellipse at 86% 80%, rgba(0, 100, 255, .1), transparent 18rem),
    linear-gradient(145deg, rgba(3, 15, 46, .82), rgba(2, 8, 28, .78));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 26px 72px rgba(0, 0, 0, .26);
}

/* ================================================================
   BOI FILING — increase small inner-content text for readability
   ================================================================ */
.boi-page .boi-mini-card h3 { font-size: 16px !important; }
.boi-page .boi-mini-card p  { font-size: 14px !important; line-height: 1.6; }

.boi-page .boi-process-grid h3 { font-size: 15px !important; }
.boi-page .boi-process-grid p  { font-size: 13px !important; line-height: 1.5; }

.boi-page .boi-benefits h3,
.boi-page .boi-why h3 { font-size: 15px !important; }

.boi-page .boi-benefits p,
.boi-page .boi-why p { font-size: 13px !important; line-height: 1.55; }

.boi-page .boi-package-list { font-size: 14px !important; }

.boi-page .boi-faq summary { font-size: 14px !important; }
.boi-page .boi-faq p { font-size: 13px !important; line-height: 1.6; }

.boi-page .boi-overview .check-list,
.boi-page .boi-documents .check-list { font-size: 15px !important; line-height: 1.95; }

/* ================================================================
   US LLC — service card SVG icons (replace text badges)
   ================================================================ */
.us-llc-page .svc-ico {
  width: 56px;
  height: 56px;
  padding: 0;
  background: rgba(74, 158, 255, .1);
  border: 1px solid rgba(74, 158, 255, .32);
  box-shadow: 0 0 20px rgba(74, 158, 255, .18);
}

.us-llc-page .svc-ico img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}

.us-llc-page .us-service-card:hover .svc-ico {
  border-color: rgba(74, 158, 255, .6);
  box-shadow: 0 0 26px rgba(74, 158, 255, .4);
}

/* ================================================================
   HERO FIXES — BOI, Registered Agent
   Show the full designed hero image without awkward cropping/zoom
   ================================================================ */

/* BOI: the 130% background zoom cropped the image top/bottom.
   Use full-height auto width so the whole composition is visible. */
.boi-page .boi-hero::before {
  background-size: auto 102% !important;
  background-position: right center !important;
}

/* Registered Agent: make the hero image fill its column prominently */
.ra-page-shell .ra-hero-visual {
  min-height: 360px;
  justify-content: flex-end;
}

.ra-page-shell .ra-hero-visual img {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 22px 40px rgba(0, 0, 0, .3));
}

/* ================================================================
   BOI HERO — clean real image (desktop right, mobile behind text)
   Replaces the cropped background-image approach
   ================================================================ */

/* Desktop: gradient-only ::before, real image shown on the right */
.boi-page .boi-hero::before {
  background:
    linear-gradient(90deg, rgba(1,7,22,.96), rgba(1,7,22,.56) 43%, rgba(1,7,22,.1) 74%),
    radial-gradient(circle at 66% 46%, rgba(0,109,255,.22), transparent 22rem) !important;
}

.boi-page .boi-hero::after {
  display: none !important;
}

.boi-page .boi-hero-visual {
  display: flex !important;
  align-items: center;
  justify-content: flex-end;
  min-height: 400px !important;
  animation: none !important;
  position: relative;
  overflow: visible;
}

.boi-page .boi-hero-visual img {
  display: block !important;
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 22px 44px rgba(0,0,0,.34));
}

/* Mobile: image behind the text (homepage pattern) */
@media (max-width: 980px) {
  .boi-page .boi-hero {
    position: relative;
    grid-template-columns: 1fr !important;
    min-height: clamp(520px, 88vw, 640px) !important;
    padding: 36px 0 28px !important;
    align-items: start !important;
    overflow: hidden;
    border-radius: 0 !important;
    background: none !important;
  }

  .boi-page .boi-hero::before {
    display: none !important;
  }

  .boi-page .boi-hero-visual {
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;
    min-height: 0 !important;
    opacity: .4;
    justify-content: flex-end;
    align-items: center;
    overflow: hidden;
    pointer-events: none;
    mask-image:
      radial-gradient(ellipse at 78% 48%, #000 0%, rgba(0,0,0,.7) 42%, rgba(0,0,0,.34) 60%, transparent 86%),
      linear-gradient(180deg, transparent 0%, rgba(0,0,0,.72) 14%, #000 44%, rgba(0,0,0,.72) 84%, transparent 100%);
    -webkit-mask-image:
      radial-gradient(ellipse at 78% 48%, #000 0%, rgba(0,0,0,.7) 42%, rgba(0,0,0,.34) 60%, transparent 86%),
      linear-gradient(180deg, transparent 0%, rgba(0,0,0,.72) 14%, #000 44%, rgba(0,0,0,.72) 84%, transparent 100%);
    mask-composite: intersect;
    -webkit-mask-composite: source-in;
  }

  .boi-page .boi-hero-visual img {
    width: auto !important;
    height: 100% !important;
    object-position: right center;
    filter: none !important;
  }

  .boi-page .boi-hero::after {
    content: "" !important;
    display: block !important;
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    height: auto;
    box-shadow: none;
    background:
      linear-gradient(90deg, rgba(1,7,22,.96) 0%, rgba(1,7,22,.9) 40%, rgba(1,7,22,.5) 66%, rgba(1,7,22,.08) 100%),
      linear-gradient(180deg, rgba(1,7,22,.84) 0%, rgba(1,7,22,.42) 44%, rgba(1,7,22,.12) 70%, rgba(1,7,22,.84) 100%) !important;
  }

  .boi-page .boi-hero-copy {
    position: relative;
    z-index: 2;
    padding-top: 0 !important;
  }
}

/* ================================================================
   BOOK A MEETING PAGE — matches the dark glass project design
   ================================================================ */

.book-page-shell {
  --book-gap: clamp(48px, 7vw, 72px);
  --book-pad-y: clamp(34px, 5vw, 54px);
  --book-pad-x: clamp(22px, 3.2vw, 40px);
  --book-radius: 20px;
}

.book-main {
  padding-bottom: clamp(56px, 7vw, 88px);
}

.book-main .container > section {
  position: relative;
  isolation: isolate;
}

.book-main .container > section + section {
  margin-top: var(--book-gap);
}

/* ── HERO ─────────────────────────────────────────────────────── */
.book-hero {
  margin-top: clamp(8px, 2.4vw, 24px);
  min-height: 430px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 36px;
  align-items: center;
}

.book-hero::before {
  content: "";
  position: absolute;
  inset: -20px -40px 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 40%, rgba(0, 140, 255, .22), transparent 22rem),
    radial-gradient(circle at 12% 80%, rgba(155, 37, 255, .12), transparent 20rem);
}

.book-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.book-hero .eyebrow svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.book-hero h1 {
  margin: 14px 0 16px;
  max-width: 560px;
  font-size: clamp(42px, 4.4vw, 59px);
  line-height: 1.05;
  font-weight: 900;
}

.book-hero h1 span {
  color: var(--cyan);
}

.book-hero .hero-subtitle {
  max-width: 500px;
  margin-bottom: 26px;
  color: #dce8ff;
  font-size: 17px;
  line-height: 1.7;
}

.book-trust-row {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 12px 26px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
  color: #eef5ff;
  font-size: 14px;
  font-weight: 600;
}

.book-trust-row li {
  position: relative;
  padding-left: 26px;
}

.book-trust-row li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #00d8ff, #0a74ff);
  box-shadow: 0 0 14px rgba(0, 203, 255, .35);
  font-size: 11px;
  font-weight: 900;
}

/* Hero meeting card */
.book-hero-art {
  display: flex;
  justify-content: flex-end;
}

.book-meet-card {
  width: 100%;
  max-width: 380px;
  padding: 24px 24px 20px;
  border: 1px solid rgba(54, 190, 255, .4);
  border-radius: 16px;
  background:
    radial-gradient(circle at 80% 0, rgba(0, 130, 255, .18), transparent 14rem),
    linear-gradient(150deg, rgba(6, 26, 66, .92), rgba(4, 12, 38, .94));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 24px 60px rgba(0, 0, 0, .4), 0 0 40px rgba(0, 130, 255, .14);
  animation: bookFloat 6s ease-in-out infinite;
}

@keyframes bookFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.book-meet-card header {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 13px;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(120, 165, 255, .2);
}

.book-meet-ico {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: #fff;
  background: linear-gradient(135deg, #0bb9ff, #1d5cff);
  box-shadow: 0 0 22px rgba(0, 145, 255, .4);
}

.book-meet-ico svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linejoin: round;
}

.book-meet-card header strong {
  display: block;
  font-size: 17px;
  font-weight: 800;
}

.book-meet-card header small {
  display: block;
  margin-top: 3px;
  color: #aac2ec;
  font-size: 12px;
}

.book-meet-card ul {
  margin: 16px 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 13px;
}

.book-meet-card ul li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 11px;
  align-items: center;
  color: #e6eeff;
  font-size: 14px;
  font-weight: 500;
}

.book-meet-card ul svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.book-meet-people {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-items: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(120, 165, 255, .2);
}

.book-avatars {
  grid-row: 1 / 3;
  display: flex;
}

.book-avatars i {
  width: 30px;
  height: 30px;
  margin-right: -8px;
  border: 2px solid #0a1836;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 34%, #ffe0cd 0 28%, transparent 29%),
    linear-gradient(180deg, #2a3c5e 0 44%, #d49a72 45% 100%);
}

.book-avatars i:nth-child(2) { background: radial-gradient(circle at 50% 34%, #ffd5bd 0 28%, transparent 29%), linear-gradient(180deg, #1d2c4d 0 44%, #4178b8 45% 100%); }
.book-avatars i:nth-child(3) { background: radial-gradient(circle at 50% 34%, #f3d0b6 0 28%, transparent 29%), linear-gradient(180deg, #4a2f47 0 44%, #d88066 45% 100%); }

.book-meet-people b {
  font-size: 14px;
  font-weight: 800;
}

.book-meet-people small {
  color: #aac2ec;
  font-size: 12px;
}

/* ── WHAT TO EXPECT ───────────────────────────────────────────── */
.book-expect {
  text-align: center;
}

.book-expect .section-kicker {
  margin-bottom: 8px;
}

.book-expect h2 {
  margin: 0 0 clamp(22px, 3vw, 34px);
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.16;
  font-weight: 800;
}

.book-expect-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 22px);
}

.book-expect-card {
  position: relative;
  padding: 28px 22px 24px;
  text-align: center;
  border-color: rgba(255,255,255,.09);
  transition: transform 0.28s cubic-bezier(.2,.8,.2,1), box-shadow 0.28s ease, border-color 0.28s ease;
}

.book-expect-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 200, 255, .4);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 24px 56px rgba(0, 0, 0, .34), 0 0 28px rgba(0, 180, 255, .18);
}

.book-expect-card .round-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 16px;
}

.book-expect-card .book-step {
  position: absolute;
  right: 16px;
  top: 14px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(0, 200, 255, .4);
  background: rgba(0, 120, 255, .14);
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
}

.book-expect-card h3 {
  margin: 0 0 9px;
  font-size: 17px;
  font-weight: 800;
}

.book-expect-card p {
  margin: 0;
  color: #d3def5;
  font-size: 14px;
  line-height: 1.6;
}

/* ── SCHEDULE / CALENDLY ──────────────────────────────────────── */
.book-schedule {
  width: min(100%, 1000px) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: var(--book-pad-y) var(--book-pad-x) !important;
  border-radius: var(--book-radius) !important;
  text-align: center;
  border: 1px solid rgba(0, 160, 255, .26);
  background:
    radial-gradient(ellipse at 12% 16%, rgba(0, 150, 255, .14), transparent 22rem),
    linear-gradient(145deg, rgba(4, 18, 52, .82), rgba(2, 8, 28, .8));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 28px 78px rgba(0, 0, 0, .3);
}

.book-schedule .section-kicker {
  margin-bottom: 8px;
}

.book-schedule h2 {
  margin: 0 0 10px;
  font-size: clamp(25px, 3vw, 34px);
  font-weight: 800;
}

.book-schedule-sub {
  max-width: 560px;
  margin: 0 auto 24px;
  color: #cfdcf5;
  font-size: 16px;
  line-height: 1.65;
}

.book-widget-frame {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .34);
}

.book-page-shell .calendly-inline-widget {
  min-width: 320px;
  height: 700px;
}

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 980px) {
  .book-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 28px;
    padding-top: 8px;
  }

  .book-hero-art {
    justify-content: center;
  }

  .book-meet-card {
    max-width: 420px;
    animation: none;
  }

  .book-expect-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .book-trust-row {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .book-expect-grid {
    grid-template-columns: 1fr;
  }

  .book-schedule {
    padding: 24px 16px !important;
  }

  .book-page-shell .calendly-inline-widget {
    height: 940px;
  }
}

/* ================================================================
   US TAX FILING — real images (hero, we-help, CTA)
   Scoped to .tax-page-shell:not(.uk-tax-page-shell) = US tax page
   ================================================================ */

/* Desktop: hero image on the right */
.tax-page-shell:not(.uk-tax-page-shell) .tax-hero-art {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: visible;
}

.tax-page-shell:not(.uk-tax-page-shell) .tax-hero-art img {
  display: block;
  width: 100%;
  max-width: 640px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 22px 46px rgba(0,0,0,.36));
}

/* We Help visual image */
.tax-page-shell:not(.uk-tax-page-shell) .tax-help-visual {
  min-height: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tax-page-shell:not(.uk-tax-page-shell) .tax-help-visual img {
  display: block;
  width: 100%;
  max-width: 470px;
  height: auto;
  object-fit: contain;
  border-radius: 14px;
  filter: drop-shadow(0 18px 38px rgba(0,0,0,.32));
}

/* CTA visual image (hide the CSS-drawn shield/document) */
.tax-page-shell:not(.uk-tax-page-shell) .tax-cta-visual {
  width: 250px;
  height: auto;
}

.tax-page-shell:not(.uk-tax-page-shell) .tax-cta-visual::before,
.tax-page-shell:not(.uk-tax-page-shell) .tax-cta-visual::after {
  display: none !important;
  content: none !important;
}

.tax-page-shell:not(.uk-tax-page-shell) .tax-cta-visual img {
  display: block;
  width: 100%;
  max-width: 250px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 32px rgba(0,90,210,.34));
}

/* ── Mobile: hero image goes behind the text ──────────────────── */
@media (max-width: 980px) {
  .tax-page-shell:not(.uk-tax-page-shell) .tax-hero {
    position: relative;
    grid-template-columns: 1fr !important;
    min-height: clamp(520px, 88vw, 640px) !important;
    padding: 36px 0 28px !important;
    align-items: start !important;
    overflow: hidden;
  }

  .tax-page-shell:not(.uk-tax-page-shell) .tax-hero::before {
    display: none !important;
  }

  .tax-page-shell:not(.uk-tax-page-shell) .tax-hero-art {
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;
    min-height: 0 !important;
    opacity: .4;
    justify-content: flex-end;
    align-items: center;
    overflow: hidden;
    pointer-events: none;
    mask-image:
      radial-gradient(ellipse at 78% 48%, #000 0%, rgba(0,0,0,.7) 42%, rgba(0,0,0,.34) 60%, transparent 86%),
      linear-gradient(180deg, transparent 0%, rgba(0,0,0,.72) 14%, #000 44%, rgba(0,0,0,.72) 84%, transparent 100%);
    -webkit-mask-image:
      radial-gradient(ellipse at 78% 48%, #000 0%, rgba(0,0,0,.7) 42%, rgba(0,0,0,.34) 60%, transparent 86%),
      linear-gradient(180deg, transparent 0%, rgba(0,0,0,.72) 14%, #000 44%, rgba(0,0,0,.72) 84%, transparent 100%);
    mask-composite: intersect;
    -webkit-mask-composite: source-in;
  }

  .tax-page-shell:not(.uk-tax-page-shell) .tax-hero-art img {
    width: auto !important;
    height: 100% !important;
    max-width: none !important;
    object-position: right center;
    filter: none !important;
  }

  .tax-page-shell:not(.uk-tax-page-shell) .tax-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
      linear-gradient(90deg, rgba(1,7,22,.96) 0%, rgba(1,7,22,.9) 40%, rgba(1,7,22,.5) 66%, rgba(1,7,22,.08) 100%),
      linear-gradient(180deg, rgba(1,7,22,.84) 0%, rgba(1,7,22,.42) 44%, rgba(1,7,22,.12) 70%, rgba(1,7,22,.84) 100%);
  }

  .tax-page-shell:not(.uk-tax-page-shell) .tax-copy {
    position: relative;
    z-index: 2;
  }

  .tax-page-shell:not(.uk-tax-page-shell) .tax-help-visual img {
    max-width: 380px;
    margin: 0 auto;
  }
}

@media (max-width: 620px) {
  .tax-page-shell:not(.uk-tax-page-shell) .tax-hero-art {
    min-height: 0 !important;
  }

  .tax-page-shell:not(.uk-tax-page-shell) .tax-cta-visual {
    left: 50%;
    right: auto;
    bottom: 16px;
    width: 200px;
    transform: translateX(-50%);
  }
}

/* ================================================================
   US TAX FILING — homepage-style distinct section backgrounds
   Scoped to .tax-page-shell:not(.uk-tax-page-shell)
   ================================================================ */

.tax-page-shell:not(.uk-tax-page-shell) {
  --txs-gap: clamp(48px, 7vw, 72px);
  --txs-pad-y: clamp(34px, 5vw, 54px);
  --txs-pad-x: clamp(22px, 3.2vw, 38px);
  --txs-radius: 20px;
}

.tax-page-shell:not(.uk-tax-page-shell) .tax-main {
  padding-bottom: clamp(56px, 7vw, 88px);
}

/* Section gap rhythm */
.tax-page-shell:not(.uk-tax-page-shell) .tax-main .container > section {
  position: relative;
  isolation: isolate;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.tax-page-shell:not(.uk-tax-page-shell) .tax-main .container > section + section {
  margin-top: var(--txs-gap) !important;
}

.tax-page-shell:not(.uk-tax-page-shell) .tax-hero {
  margin-top: clamp(8px, 2.4vw, 24px) !important;
}

/* ── BOX sections (constrained, centered) ─────────────────────── */
.tax-page-shell:not(.uk-tax-page-shell) .tax-feature-strip,
.tax-page-shell:not(.uk-tax-page-shell) .tax-services,
.tax-page-shell:not(.uk-tax-page-shell) .tax-help-deadlines,
.tax-page-shell:not(.uk-tax-page-shell) .tax-mid-grid,
.tax-page-shell:not(.uk-tax-page-shell) .tax-testimonials {
  width: min(100% - 96px, var(--container-narrow-max)) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  border-radius: var(--txs-radius) !important;
}

/* Bare grid sections get an explicit dark panel */
.tax-page-shell:not(.uk-tax-page-shell) .tax-services,
.tax-page-shell:not(.uk-tax-page-shell) .tax-help-deadlines,
.tax-page-shell:not(.uk-tax-page-shell) .tax-testimonials {
  padding: var(--txs-pad-y) var(--txs-pad-x) !important;
  border: 1px solid rgba(0, 160, 255, .18) !important;
  border-bottom: 1px solid rgba(0, 160, 255, .18) !important;
  background:
    radial-gradient(ellipse at 12% 18%, rgba(0, 155, 255, .13), transparent 20rem),
    radial-gradient(ellipse at 86% 80%, rgba(0, 100, 255, .1), transparent 18rem),
    linear-gradient(145deg, rgba(3, 15, 46, .82), rgba(2, 8, 28, .78)) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 26px 72px rgba(0, 0, 0, .26) !important;
}

/* feature-strip is glass-card already: just refresh padding */
.tax-page-shell:not(.uk-tax-page-shell) .tax-feature-strip {
  padding: clamp(22px, 3vw, 30px) var(--txs-pad-x) !important;
}

/* mid-grid: transparent so its 3 cards read as distinct */
.tax-page-shell:not(.uk-tax-page-shell) .tax-mid-grid {
  background: none;
  border: none;
  box-shadow: none;
}

/* ── FULL-WIDTH VIVID: 4-step process ─────────────────────────── */
.tax-page-shell:not(.uk-tax-page-shell) .tax-process {
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  border-radius: var(--txs-radius) !important;
  outline: 1px solid rgba(255,255,255,.1);
  outline-offset: 10px;
  border: 1px solid rgba(0, 185, 255, .46) !important;
  background:
    radial-gradient(circle at 14% 50%, rgba(0, 200, 255, .5), transparent 9rem),
    radial-gradient(circle at 82% 30%, rgba(0, 140, 255, .26), transparent 18rem),
    linear-gradient(110deg, #04246a 0%, #03103f 52%, #020a2e 100%) !important;
  box-shadow:
    0 24px 66px rgba(0, 0, 0, .38),
    0 0 44px rgba(0, 160, 255, .22),
    inset 0 1px 0 rgba(255,255,255,.14) !important;
  padding: var(--txs-pad-y) var(--txs-pad-x) !important;
}

.tax-page-shell:not(.uk-tax-page-shell) .tax-process::after {
  content: "";
  position: absolute;
  inset: -28% -8%;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 52%, rgba(255,255,255,.16), transparent 15rem),
    repeating-linear-gradient(114deg, rgba(255,255,255,.07) 0 1px, transparent 1px 24px);
  opacity: .32;
  border-radius: inherit;
  z-index: -1;
}

.tax-page-shell:not(.uk-tax-page-shell) .tax-process > * {
  position: relative;
  z-index: 1;
}

/* ── FULL-WIDTH DARK: final grid (FAQ + CTA) ──────────────────── */
.tax-page-shell:not(.uk-tax-page-shell) .tax-final-grid {
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  border-radius: var(--txs-radius) !important;
  outline: 1px solid rgba(255,255,255,.08);
  outline-offset: 10px;
  border: 1px solid rgba(0, 150, 255, .32) !important;
  background:
    radial-gradient(circle at 10% 50%, rgba(0, 190, 255, .14), transparent 18rem),
    radial-gradient(circle at 88% 28%, rgba(0, 140, 255, .1), transparent 22rem),
    linear-gradient(145deg, rgba(4, 18, 52, .96), rgba(2, 8, 28, .98)) !important;
  box-shadow:
    0 28px 78px rgba(0, 0, 0, .34),
    0 0 44px rgba(0, 160, 255, .15),
    inset 0 1px 0 rgba(255,255,255,.07) !important;
  padding: var(--txs-pad-y) var(--txs-pad-x) !important;
}

.tax-page-shell:not(.uk-tax-page-shell) .tax-final-grid::after {
  content: "";
  position: absolute;
  inset: -26% -8%;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 22% 50%, rgba(0, 190, 255, .1), transparent 15rem),
    repeating-linear-gradient(112deg, rgba(255,255,255,.06) 0 1px, transparent 1px 24px);
  opacity: .38;
  border-radius: inherit;
  z-index: -1;
}

.tax-page-shell:not(.uk-tax-page-shell) .tax-final-grid > * {
  position: relative;
  z-index: 1;
}

/* ── Section headings — consistent scale ──────────────────────── */
.tax-page-shell:not(.uk-tax-page-shell) .tax-services h2,
.tax-page-shell:not(.uk-tax-page-shell) .tax-process h2,
.tax-page-shell:not(.uk-tax-page-shell) .tax-testimonials h2,
.tax-page-shell:not(.uk-tax-page-shell) .tax-help h2,
.tax-page-shell:not(.uk-tax-page-shell) .tax-deadlines h2,
.tax-page-shell:not(.uk-tax-page-shell) .tax-mid-grid h2,
.tax-page-shell:not(.uk-tax-page-shell) .tax-faq h2 {
  font-size: clamp(21px, 2.6vw, 29px) !important;
}

/* ── Responsive widths ────────────────────────────────────────── */
@media (max-width: 980px) {
  .tax-page-shell:not(.uk-tax-page-shell) .tax-feature-strip,
  .tax-page-shell:not(.uk-tax-page-shell) .tax-services,
  .tax-page-shell:not(.uk-tax-page-shell) .tax-help-deadlines,
  .tax-page-shell:not(.uk-tax-page-shell) .tax-mid-grid,
  .tax-page-shell:not(.uk-tax-page-shell) .tax-testimonials {
    width: min(100% - 36px, 720px) !important;
  }
}

@media (max-width: 620px) {
  .tax-page-shell:not(.uk-tax-page-shell) .tax-feature-strip,
  .tax-page-shell:not(.uk-tax-page-shell) .tax-services,
  .tax-page-shell:not(.uk-tax-page-shell) .tax-help-deadlines,
  .tax-page-shell:not(.uk-tax-page-shell) .tax-mid-grid,
  .tax-page-shell:not(.uk-tax-page-shell) .tax-testimonials {
    width: 100% !important;
    border-radius: 14px !important;
  }

  .tax-page-shell:not(.uk-tax-page-shell) .tax-process,
  .tax-page-shell:not(.uk-tax-page-shell) .tax-final-grid {
    border-radius: 14px !important;
  }
}

/* ================================================================
   US TAX FILING — tax-mid-grid box panel + larger inner text
   ================================================================ */

/* Give the Why/Pricing/Compare section a distinct box panel */
.tax-page-shell:not(.uk-tax-page-shell) .tax-mid-grid {
  padding: var(--txs-pad-y) var(--txs-pad-x) !important;
  border: 1px solid rgba(0, 160, 255, .18) !important;
  background:
    radial-gradient(ellipse at 12% 18%, rgba(0, 155, 255, .13), transparent 20rem),
    radial-gradient(ellipse at 86% 80%, rgba(0, 100, 255, .1), transparent 18rem),
    linear-gradient(145deg, rgba(3, 15, 46, .82), rgba(2, 8, 28, .78)) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 26px 72px rgba(0, 0, 0, .26) !important;
}

/* ── Larger inner text — Why / Pricing / Compare ──────────────── */
.tax-page-shell:not(.uk-tax-page-shell) .tax-why b,
.tax-page-shell:not(.uk-tax-page-shell) .tax-price p,
.tax-page-shell:not(.uk-tax-page-shell) .tax-price span {
  font-size: 15px !important;
}

.tax-page-shell:not(.uk-tax-page-shell) .tax-why p {
  font-size: 14px !important;
  line-height: 1.6;
}

.tax-page-shell:not(.uk-tax-page-shell) .tax-price .ra-check-list {
  font-size: 14px !important;
  line-height: 1.95;
}

.tax-page-shell:not(.uk-tax-page-shell) .tax-compare b {
  font-size: 14px !important;
}

.tax-page-shell:not(.uk-tax-page-shell) .tax-compare span {
  font-size: 13px !important;
}

/* ── Larger inner text — rest of the page ─────────────────────── */
.tax-page-shell:not(.uk-tax-page-shell) .tax-feature-strip h3 {
  font-size: 16px !important;
}

.tax-page-shell:not(.uk-tax-page-shell) .tax-feature-strip p {
  font-size: 13px !important;
  line-height: 1.55;
}

.tax-page-shell:not(.uk-tax-page-shell) .tax-service-grid h3 {
  font-size: 17px !important;
}

.tax-page-shell:not(.uk-tax-page-shell) .tax-service-grid p {
  font-size: 13px !important;
  line-height: 1.55;
}

.tax-page-shell:not(.uk-tax-page-shell) .tax-service-grid a {
  font-size: 13px !important;
}

.tax-page-shell:not(.uk-tax-page-shell) .tax-help .ra-check-list {
  font-size: 15px !important;
}

.tax-page-shell:not(.uk-tax-page-shell) .tax-deadlines th,
.tax-page-shell:not(.uk-tax-page-shell) .tax-deadlines td {
  font-size: 13px !important;
}

.tax-page-shell:not(.uk-tax-page-shell) .tax-process-grid h3 {
  font-size: 15px !important;
}

.tax-page-shell:not(.uk-tax-page-shell) .tax-process-grid p {
  font-size: 13px !important;
  line-height: 1.5;
}

.tax-page-shell:not(.uk-tax-page-shell) .tax-faq summary {
  font-size: 14px !important;
}

.tax-page-shell:not(.uk-tax-page-shell) .tax-faq p {
  font-size: 13px !important;
  line-height: 1.6;
}

.tax-page-shell:not(.uk-tax-page-shell) .tax-testimonials p {
  font-size: 13px !important;
  line-height: 1.6;
}

/* Footer logo (image) */
.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 6px;
}
.footer-logo img {
  display: block;
  width: auto;
  height: 68px;
  max-width: 230px;
  object-fit: contain;
  object-position: left center;
}
