
    
    /* Trustpilot pill */
    .trust {
      display: inline-flex;
      align-items: center;
      gap: clamp(8px, 1.6vw, 16px);
      padding: clamp(8px, 1.5vw, 14px) clamp(14px, 2.2vw, 22px);
      background: #fff;
      color: #0f172a;
      border: 3px solid #0b0b0b;
      border-radius: 18px;
      box-shadow: 0 5px 0 rgba(0, 0, 0, .55), 0 14px 28px rgba(0, 0, 0, .18);
    }

    .star {
      display: inline-block;
      line-height: 1;
      transform: translateY(1px);
    }

    .star::before {
      content: "★";
      font-weight: 900;
      font-size: clamp(18px, 3vw, 28px);
      color: #00b67a;
    }

    .trust b {
      color: #0b0b0b;
      font-weight: 900;
      letter-spacing: .2px;
    }

    /* ===== Hero ===== */
    .pricing-hero {
      padding: clamp(46px, 7vw, 92px) 0 clamp(18px, 3vw, 28px);
      text-align: center;
      background: #fff;
      border-bottom: 1px solid var(--border);
    }

    .pricing-hero__title {
      margin: 16px 0 8px;
      font-weight: 700;
      letter-spacing: -.5px;
      font-size: clamp(36px, 3vw, 72px);
      line-height: 1.12;
      background: linear-gradient(120deg, var(--grad-start) 8%, var(--grad-mid) 50%, var(--grad-end) 92%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      -webkit-text-fill-color: transparent;
    }

    .pricing-hero__sub {
      color: var(--body-muted);
      font-size: clamp(16px, 2vw, 20px);
      max-width: 820px;
      margin: 0 auto;
    }

    /* ===== Pricing cards ===== */
    .pricing-cards-outer {
      max-width: var(--maxw);
      margin: clamp(28px, 6vw, 80px) auto;
      padding-inline: 16px;
    }

    .pricing-cards-row {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: clamp(16px, 2.6vw, 28px);
    }

    .pricing-card {
      background: var(--card-bg);
      border: 2px solid #e2e8f0;
      border-radius: 24px;
      padding: 28px;
      display: flex;
      flex-direction: column;
      box-shadow: 0 10px 28px rgba(2, 6, 23, 0.06);
      transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
    }

    .pricing-card:hover {
      border-color: #0f172a;
      box-shadow: 0 16px 36px rgba(2, 6, 23, 0.14), 0 0 0 4px rgba(15, 23, 42, 0.06);
      transform: translateY(-2px);
    }

    .pricing-card header svg {
      width: 28px;
      height: 28px;
    }

    .pricing-card header h3 {
      font-size: 1.3rem;
      font-weight: 700;
      margin: 0 0 4px;
    }

    .pricing-card header p {
      margin: 0;
      color: var(--body-muted);
      font-size: 0.92rem;
    }

    .pricing-card ul {
      font-size: 0.95rem;
      line-height: 1.6;
      padding-left: 20px;
      margin: 20px 0;
    }

    .pricing-card footer {
      border-top: 1px solid #e2e8f0;
      padding-top: 16px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .price-info p:first-child {
      font-size: 22px;
      font-weight: 800;
      line-height: 1.2;
      margin: 0;
    }

    .price-info p:first-child em {
      font-style: normal;
      font-weight: 700;
      font-size: 14px;
      opacity: .8;
    }

    .price-info p+p {
      margin: 4px 0 0;
      color: #475569;
      font-size: 14px;
    }

    .wp-block-button__link {
      background: #000;
      color: #fff;
      text-decoration: none;
      font-weight: 700;
      padding: 10px 16px;
      border-radius: 12px;
      display: inline-block;
      transition: opacity 0.2s ease;
    }

    .wp-block-button__link:hover {
      opacity: 0.9;
    }

    .binb {
      position: relative;
      border-radius: 28px;
      padding: 6px;
      background: linear-gradient(120deg, var(--grad-start) 10%, var(--grad-mid) 45%, var(--grad-end) 90%);
    }

    .binb .pricing-card {
      background: #ffe3e8;
      border: none;
      border-radius: 22px;
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    }

    .most-popular {
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: #000;
      color: #fff;
      padding: 6px 12px;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.3px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    }

    /* ==== Add-ons ==== */
    .pricing-addons {
      padding: 60px 0;
      background: #fff;
    }

    .addons-grid {
      display: grid;
      grid-template-columns: repeat(4, 260px);
      gap: clamp(14px, 2.6vw, 26px);
      justify-content: center;
      align-items: stretch;
      margin: 0 auto;
    }

    @media (max-width:1200px) {
      .addons-grid {
        grid-template-columns: repeat(3, 260px);
      }
    }

    @media (max-width:920px) {
      .addons-grid {
        grid-template-columns: repeat(2, minmax(0, 320px));
      }
    }

    @media (max-width:560px) {
      .addons-grid {
        grid-template-columns: 1fr;
      }
    }

    .addon {
      position: relative;
      display: flex;
      flex-direction: column;
      gap: 12px;
      border: 1px solid var(--card-border);
      border-radius: 20px;
      padding: 18px;
      cursor: pointer;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background-color .18s ease;
      box-shadow: 0 10px 24px rgba(2, 6, 23, .06);
      background: #f9fafb;
      text-decoration: none;
      color: inherit;
      min-height: 220px;
    }

    .addon * {
      color: inherit;
      text-decoration: none;
    }

    .addon:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 30px rgba(2, 6, 23, .12);
    }

    .addon:focus-visible {
      outline: 2px solid #3b82f6;
      outline-offset: 3px;
    }

    .addon__top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
    }

    .addon__icon {
      flex: 0 0 44px;
      width: 44px;
      height: 44px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      background: #fff;
      box-shadow: 0 6px 16px rgba(2, 6, 23, .08);
      transition: transform .2s ease;
    }

    .addon:hover .addon__icon {
      transform: translateY(-2px) scale(1.03);
    }

    .chip {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 4px 10px;
      font-size: .78rem;
      font-weight: 700;
      border-radius: 999px;
      background: #0f172a;
      color: #fff;
      white-space: nowrap;
      box-shadow: 0 8px 18px rgba(2, 6, 23, .12);
    }

    .addon__content h3 {
      margin: 0;
      font-size: 1.15rem;
      line-height: 1.25;
    }

    .addon__price {
      margin: 6px 0 0;
      font-weight: 700;
    }

    .addon__desc {
      margin: 10px 0 0;
      color: var(--body-muted);
      line-height: 1.6;
    }

    .addon--address {
      background: #1e293b1a;
    }

    .addon--itin {
      background: #1e40af1a;
    }

    /* grad-start - bright royal blue */
    .addon--courier {
      background: #3b82f61a;
    }

    /* vivid blue, closer to start */
    .addon--annual {
      background: #60a5fa1a;
    }

    /* sky blue, lighter shade of start */
    .addon--agent {
      background: #9333ea1a;
    }

    /* grad-mid - vibrant purple */
    .addon--expedite {
      background: #a78bfa1a;
    }

    /* soft purple, middle gradient */
    .addon--reinstatement {
      background: #6366f11a;
    }

    /* bright indigo, middle gradient */
    .addon--irs {
      background: #f9730f1a;
    }

    /* orange, approaching grad-end */
    .addon--salestax {
      background: #facc1521;
    }

    /* yellowish-orange, end-leaning */
    .addon--closure {
      background: #ef44441a;
    }

    /* grad-end - bright red */

    /* Comparison */
    .pricing-comparison {
      padding: 60px 20px;
      background: linear-gradient(to right, var(--grad-start), var(--grad-mid), var(--grad-end));
      color: var(--text);
    }

    .pricing-comparison .container {
      max-width: var(--maxw, 1180px);
      margin: 0 auto;
    }

    .comparison-wrapper {
      overflow-x: auto;
      background-color: #fff;
      color: #0f172a;
      border-radius: 16px;
      padding: 24px;
      box-shadow: 0 12px 26px rgba(0, 0, 0, .05);
      max-width: 980px;
      margin: 0 auto;
    }

    .comparison-title {
      font-size: 2.5rem;
      font-weight: bold;
      text-align: center;
      margin-bottom: .5rem;
    }

    .comparison-subtitle {
      font-size: 1.1rem;
      text-align: center;
      margin-bottom: 2.5rem;
      color: var(--muted);
    }

    .comparison-table {
      width: 100%;
      border-collapse: collapse;
      margin: 0 auto;
    }

    .comparison-table thead th {
      background: #f8fafc;
      color: #0f172a;
      padding: 14px;
      font-weight: 700;
      border-bottom: 2px solid var(--border);
      white-space: nowrap;
    }

    .comparison-table thead th:first-child {
      text-align: left;
    }

    .comparison-table thead th:not(:first-child) {
      text-align: center;
    }

    .comparison-table tbody td,
    .comparison-table tbody th {
      padding: 12px 14px;
      border-bottom: 1px solid #e2e8f0;
      vertical-align: middle;
      white-space: nowrap;
    }

    .comparison-table tbody td:first-child {
      text-align: left;
    }

    .comparison-table tbody td:not(:first-child) {
      text-align: center;
    }

    .comparison-table .category td {
      background: #f1f5f9;
      font-weight: 600;
      text-transform: uppercase;
      font-size: .85rem;
      padding-top: 18px;
      padding-bottom: 10px;
      color: #475569;
      text-align: left !important;
    }

    .badge {
      display: inline-block;
      background: var(--brand);
      color: #fff;
      padding: 2px 10px;
      font-size: .7rem;
      font-weight: 600;
      border-radius: 999px;
      margin-left: 6px;
    }

    .sym {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 1.4em;
      font-weight: 900;
      line-height: 1;
      font-size: 1.05rem;
    }

    .sym.yes {
      color: #16a34a;
    }

    .sym.no {
      color: #dc2626;
    }

    .sym.add {
      color: #f59e0b;
    }

    .legend {
      font-size: .9rem;
      color: #94a3b8;
      margin-top: 20px;
      text-align: center;
    }

    .pricing-addons {
      padding: 60px 0;
      background: #fff;
    }

    .addons-title {
      margin: 0 0 18px;
      text-align: center;
      font-weight: 700;
      letter-spacing: -.3px;
      font-size: clamp(28px, 3vw, 44px);
      color: var(--body-text);
    }

    @media (max-width:560px) {
      .comparison-wrapper {
        padding: 16px;
        border-radius: 14px;
      }

      .comparison-title {
        font-size: 2rem;
      }
    }

    /* CTA */
    .cta-plain {
      background: #fff;
      border-top: 1px solid var(--border);
      padding: clamp(24px, 5vw, 48px) 0 0;
    }

    .cta-plain__wrap {
      text-align: center;
    }

    .cta-plain__title {
      margin: 0 0 6px;
      font-weight: 700;
      letter-spacing: -.2px;
      font-size: clamp(36px, 3vw, 72px);
      color: var(--body-text);
    }

    .cta-plain__sub {
      margin: 0 0 34px;
      color: var(--body-muted);
      font-size: clamp(16px, 2vw, 20px);
    }

    .cta-plain__btn {
      padding: .9rem 1.2rem;
      border-radius: 12px;
    }

    /* Footer (gradient) */
    .flc-footer {
      color: var(--text);
      border-top: 1px solid rgba(255, 255, 255, .14);
      background:
        radial-gradient(1100px 600px at 16% 12%, rgba(255, 77, 90, .18), transparent 58%),
        radial-gradient(900px 600px at 78% 22%, rgba(72, 133, 237, .12), transparent 62%),
        linear-gradient(100deg, var(--grad-start) 20%, var(--grad-mid) 42%, var(--grad-end) 90%);
      padding: clamp(26px, 5vw, 56px) 15px;
      margin-top: clamp(24px, 6vw, 84px);
    }

    .flc-footer__container {
      max-width: var(--maxw);
      margin: 0 auto;
    }

    .flc-footer__main {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: clamp(22px, 4.5vw, 56px);
      align-items: start;
      margin-bottom: clamp(22px, 5vw, 56px);
    }

    .flc-desc {
      margin: 8px 0 0;
      color: #e5e9f2;
      line-height: 1.65;
    }

    .flc-news__title {
      margin: 0 0 10px;
      font-weight: 700;
      letter-spacing: -.2px;
    }

    .flc-news__form {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 10px;
      margin-bottom: 8px;
    }

    .flc-input {
      background: #fff;
      color: #0f172a;
      border: 1px solid #e5e7eb;
      border-radius: 12px;
      padding: .9rem 1rem;
      width: 100%;
    }

    .flc-input:focus {
      outline: none;
      border-color: #60a5fa;
      box-shadow: 0 0 0 2px rgba(96, 165, 250, .25);
    }

    .flc-btn {
      background: var(--brand);
      color: #fff;
      border: 0;
      border-radius: 12px;
      padding: .9rem 1.1rem;
      font-weight: 700;
      cursor: pointer;
      box-shadow: 0 6px 16px rgba(255, 77, 90, .35);
    }

    .flc-btn:hover {
      opacity: .95;
    }

    .flc-news__pp {
      margin: 6px 0 0;
      color: #cbd5e1;
      font-size: .95rem;
    }

    .flc-news__success {
      margin-top: 8px;
      background: #ecfdf5;
      color: #065f46;
      border: 1px solid #a7f3d0;
      border-radius: 10px;
      padding: 10px 12px;
      font-weight: 700;
    }

    .flc-links {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: clamp(16px, 3.5vw, 36px);
      margin-bottom: clamp(18px, 4vw, 40px);
    }

    .flc-col__title {
      margin: 0 0 10px;
      font-weight: 700;
    }

    .flc-link {
      display: block;
      color: #e5e9f2;
      text-decoration: none;
      padding: 6px 0;
    }

    .flc-link:hover {
      color: #fff;
    }

    .flc-bottom {
      display: flex;
      gap: 16px;
      align-items: center;
      justify-content: space-between;
      border-top: 1px solid rgba(255, 255, 255, .14);
      padding-top: 14px;
    }

    .flc-social {
      display: flex;
      gap: 12px;
    }

    .flc-social__link {
      display: inline-grid;
      place-items: center;
      width: 36px;
      height: 36px;
      border-radius: 10px;
      border: 1px solid rgba(255, 255, 255, .22);
      color: #fff;
      text-decoration: none;
    }

    .flc-social__link:hover {
      background: rgba(255, 255, 255, .06);
    }

    .flc-copy {
      color: #cbd5e1;
      font-size: .95rem;
    }

    .flc-sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    @media (max-width:1020px) {
      .pricing-cards-row {
        grid-template-columns: 1fr 1fr;
      }

      .addons-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width:720px) {
      .pricing-cards-row {
        grid-template-columns: 1fr;
      }

      .pricing-card {
        padding: 24px
      }

      .addons-grid {
        grid-template-columns: 1fr;
      }

      .most-popular {
        top: -12px;
      }

      .flc-footer__main {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width:560px) {
      .flc-news__form {
        grid-template-columns: 1fr;
      }

      .flc-links {
        grid-template-columns: 1fr;
      }

      .flc-bottom {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
      }

      .flc-footer {
        padding-inline: 20px;
      }
    }

    @keyframes floatUp {
      from {
        transform: translateY(10px);
        opacity: 0
      }

      to {
        transform: translateY(0);
        opacity: 1
      }
    }

    .animate {
      animation: floatUp .6s ease both;
    }

    @media (max-width: 640px) {
      .comparison-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin-inline: -16px;
        padding-inline: 16px;
      }

      .comparison-table thead th,
      .comparison-table tbody th,
      .comparison-table tbody td {
        white-space: normal;
      }

      .comparison-title {
        font-size: clamp(22px, 6vw, 28px);
      }

      .comparison-subtitle {
        font-size: 0.95rem;
      }
    }

    .trust {
      max-width: 100%;
      flex-wrap: wrap;
      overflow: hidden;
      word-break: break-word;
    }

    .pricing-hero__title {
      font-size: clamp(28px, 6vw, 56px);
    }

    :root {
      --shadow: 0 12px 30px rgba(0, 0, 0, .12);
    }
