/* ==========================================================================
   Easy Impound — shared stylesheet
   Colors and type scale carried over from the original marketing site.
   ========================================================================== */

:root {
  --blue: #2E90FA;
  --blue-dark: #1570CD;
  --blue-deep: #0B4A8F;
  --green: #22C55E;
  --green-dark: #16A34A;
  --purple: #7C3AED;
  --amber: #B45309;

  --ink: #0F172A;
  --body: #475569;
  --muted: #64748B;
  --faint: #94A3B8;
  --line: #E2E8F0;
  --tint: #F2F8FF;
  --tint-2: #F8FAFC;

  --wrap: 1080px;
  --radius: 14px;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, .06);
  --shadow-md: 0 8px 28px rgba(15, 23, 42, .08);
  --shadow-lg: 0 18px 48px rgba(15, 23, 42, .12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, Helvetica, Arial, sans-serif;
  color: var(--body);
  background: #fff;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--blue-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { color: var(--ink); margin: 0 0 12px; line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(30px, 4.6vw, 46px); letter-spacing: -.02em; }
h2 { font-size: clamp(24px, 3.2vw, 34px); letter-spacing: -.015em; }
h3 { font-size: 18px; }
p  { margin: 0 0 14px; }

/* ---------- WordPress block shims -------------------------------------------
   Page content is stored as editable WordPress blocks, so a few elements that
   were <div> or <span> in the static build are now <p>. These rules strip the
   paragraph box back off them and restore inline display.

   Placement and specificity are deliberate: single class selectors sit here,
   directly after the element reset above, so they beat `p { margin }` but lose
   to every component rule that follows. Moving this block to the end of the
   file, or raising its specificity, will change the layout. */

.ei-p { margin: 0; }
.ei-inline { display: inline-block; }
.ei-btn-line { margin: 0; display: contents; }
.wp-block-group, .wp-block-details, .wp-block-list { margin: 0; }

/* display:contents would hide the button from the editor canvas. */
.editor-styles-wrapper .ei-btn-line { display: block; }

/* Belt and braces for the legacy group wrapper.

   WordPress injects <div class="wp-block-group__inner-container"> inside every
   group block for classic themes with no theme.json. inc/setup.php removes the
   filter that does it; these rules keep the layout standing if a future release
   reintroduces it. display:contents dissolves the wrapper so grid and flex
   children still reach their parent, and the two rules below restore the
   direct-child selectors it would otherwise break. */

.wp-block-group__inner-container { display: contents; }
.stat-strip > .wp-block-group__inner-container > div {
  background: #fff; padding: 22px 18px; text-align: center;
}
.product-card > .wp-block-group__inner-container > p:not(:where(.ei-p)) {
  font-size: 14px; color: var(--muted); margin-bottom: 16px;
}


.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

/* Present to assistive tech and search engines, invisible on screen */
.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;
}
.narrow { max-width: 760px; margin-left: auto; margin-right: auto; }
.center { text-align: center; }
.lead { font-size: 17px; color: var(--muted); }
.small { font-size: 13px; }
.muted { color: var(--muted); }

/* ---------- Header / nav ---------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 66px;
}

.brand { display: flex; align-items: center; }
.brand img { height: 34px; width: auto; }
.brand:hover { text-decoration: none; }

/* Header uses the EI badge alone — the full lockup lives in the hero and footer */
.brand .brand-mark { height: 38px; width: 38px; }
@media (max-width: 780px) { .brand .brand-mark { height: 34px; width: 34px; } }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links > li { position: relative; }

.nav-links a,
.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 600;
  color: #334155;
  background: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-toggle:hover,
.nav-toggle[aria-expanded="true"] {
  background: var(--tint);
  color: var(--blue-dark);
  text-decoration: none;
}

.nav-links a.is-current { color: var(--blue-dark); }

.caret { width: 10px; height: 10px; transition: transform .18s ease; }
.nav-toggle[aria-expanded="true"] .caret { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 252px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 6px;
  display: none;
}
.dropdown.open { display: block; }

/* Overrides .nav-links a, which is an inline-flex nowrap pill */
.nav-links .dropdown-item {
  display: block;
  width: 100%;
  padding: 9px 11px;
  border-radius: 8px;
  white-space: normal;
  font-weight: 400;
  font-size: 14px;
  color: inherit;
}
.nav-links .dropdown-item:hover { background: var(--tint); text-decoration: none; }
.nav-links .dropdown-item:hover .di-title { color: var(--blue-dark); }

.dropdown-item .di-title {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
  margin: 0;
  white-space: nowrap;
}

.dropdown-foot {
  border-top: 1px solid var(--line);
  margin-top: 5px;
  padding: 4px 0 0;
  font-size: 13px;
}
.dropdown-foot > div { padding: 0; }
/* Match the dropdown items exactly so every label shares one left edge */
.nav-links .dropdown-foot a {
  display: block;
  width: 100%;
  padding: 9px 11px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--blue-dark);
  white-space: nowrap;
}
.nav-links .dropdown-foot a:hover { background: var(--tint); text-decoration: none; }

.pill {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 20px;
  white-space: nowrap;
}
.pill-blue  { background: #E7F1FE; color: var(--blue-dark); }
.pill-green { background: #E6F7EE; color: var(--green-dark); }
.pill-amber { background: #FEF3C7; color: var(--amber); }
.pill-purple{ background: #F3EEFF; color: #6B21A8; }
.pill-slate { background: #F1F5F9; color: #475569; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 600;
  border: 1.5px solid transparent;
  cursor: pointer;
  font-family: inherit;
  transition: background .15s, color .15s, border-color .15s, transform .15s;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); color: #fff; }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-dark); color: #fff; }
.btn-ghost { background: #fff; color: #334155; border-color: var(--line); }
.btn-ghost:hover { border-color: #CBD5E1; color: var(--ink); }
.btn-white { background: #fff; color: var(--blue-dark); }
.btn-white:hover { background: #F1F7FF; color: var(--blue-deep); }
.btn-lg { padding: 14px 30px; font-size: 16px; }
.btn-sm { padding: 8px 16px; font-size: 13.5px; }

.nav-cta { display: flex; align-items: center; gap: 10px; }

.hamburger {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  cursor: pointer;
}
.hamburger span {
  display: block; width: 18px; height: 2px; background: #334155; border-radius: 2px;
}
.hamburger span + span { margin-top: 4px; }

/* ---------- Sections --------------------------------------------------- */

section { padding: 68px 0; }
.sec-tint { background: var(--tint); }
.sec-tight { padding: 48px 0; }

.eyebrow {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--blue-dark);
  background: #E7F1FE;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.sec-head { text-align: center; max-width: 680px; margin: 0 auto 40px; }
.sec-head p:not(:where(.ei-p)) { color: var(--muted); font-size: 16px; margin-bottom: 0; }

/* Hero */
.hero {
  background: linear-gradient(180deg, #F5FAFF 0%, #FFFFFF 100%);
  padding: 76px 0 64px;
  text-align: center;
}
.hero p.lead { max-width: 620px; margin: 0 auto 26px; }

/* Home hero: the full lockup stands in for the headline */
.hero-logo { margin: 0 auto 26px; max-width: 560px; }
.hero-logo img { width: 100%; height: auto; }

/* Deliberately light — reads as a watermark under the lockup. Held at
   #8291A4 (3.07:1 on the hero background) so it still clears WCAG AA for
   large text; going lighter would drop it below the threshold. */
.hero-statement {
  max-width: 720px;
  margin: 0 auto 30px;
  font-size: clamp(19px, 2.3vw, 25px);
  line-height: 1.5;
  color: #8291A4;
  font-weight: 400;
  letter-spacing: -.005em;
}

@media (max-width: 600px) {
  .hero-logo { max-width: 320px; margin-bottom: 20px; }
}
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero-note { margin-top: 18px; font-size: 13px; color: var(--faint); }

/* Stat strip */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 44px;
}
.stat-strip > div { background: #fff; padding: 22px 18px; text-align: center; }
.stat-strip .v { font-size: 26px; font-weight: 700; color: var(--ink); letter-spacing: -.02em; }
.stat-strip .l { font-size: 12.5px; color: var(--muted); margin-top: 3px; }

/* Cards */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
/* Exactly two columns on desktop — used for the 2x2 product grid */
.grid-2x2 { grid-template-columns: 1fr 1fr; }
@media (max-width: 760px) { .grid-2x2 { grid-template-columns: 1fr; } }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.card h3 { margin-bottom: 6px; }
.card p:not(:where(.ei-p)) { font-size: 14px; color: var(--muted); margin-bottom: 0; }

.icon-box {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.ib-blue  { background: #E7F1FE; }
.ib-green { background: #E6F7EE; }
.ib-amber { background: #FEF3C7; }
.ib-purple{ background: #F3EEFF; }

/* Product cards */
.product-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 16px;
  padding: 26px 24px 22px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #CBD5E1; }
.product-card .pc-top { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.product-card h3 { font-size: 19px; margin-bottom: 8px; }
.product-card > p:not(:where(.ei-p)) { font-size: 14px; color: var(--muted); margin-bottom: 16px; }
.product-card ul { margin: 0 0 20px; padding: 0; list-style: none; }
.product-card li {
  position: relative;
  padding-left: 24px;
  font-size: 13.5px;
  color: var(--body);
  margin-bottom: 8px;
  line-height: 1.5;
}
.product-card li::before {
  content: "";
  position: absolute;
  left: 0; top: 5px;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: #E6F7EE url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5.5 10.5l3 3 6-6' stroke='%2316A34A' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/11px no-repeat;
}
.product-card .pc-foot { margin-top: auto; }
.pc-price {
  font-size: 13px;
  color: var(--muted);
  border-top: 1px dashed var(--line);
  padding-top: 14px;
  margin-bottom: 14px;
}
.pc-price strong { color: var(--ink); font-size: 15px; }

/* Steps */
.steps { counter-reset: step; }
.step {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
  text-align: center;
}
.step .n {
  width: 32px; height: 32px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.step h3 { font-size: 16px; }
.step p:not(:where(.ei-p)) { font-size: 13.5px; color: var(--muted); margin: 0; }

/* Feature list two-column */
.feature-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px 40px; }
/* Exactly two columns — for lists of 4 that would otherwise render 3 + 1 */
.feature-list-2 { grid-template-columns: 1fr 1fr; }
@media (max-width: 700px) { .feature-list-2 { grid-template-columns: 1fr; } }
.feature { display: flex; gap: 12px; }
.feature svg { flex-shrink: 0; margin-top: 2px; }
.feature h3 { font-size: 15px; margin-bottom: 3px; line-height: 1.35; }
.feature p:not(:where(.ei-p)) { font-size: 13.5px; color: var(--muted); margin: 0; }

/* Callouts */
.callout {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border-radius: 12px;
  padding: 16px 18px;
  font-size: 13.5px;
  line-height: 1.65;
}
.callout svg { flex-shrink: 0; margin-top: 2px; }
.callout p:not(:where(.ei-p)) { margin: 0; }
.callout-amber { background: #FFF7ED; border: 1px solid #FED7AA; color: #7C2D12; }
.callout-blue  { background: #EFF6FF; border: 1px solid #BFDBFE; color: #1E3A5F; }
.callout-green { background: #F0FDF4; border: 1px solid #BBF7D0; color: #14532D; }
.callout-slate { background: var(--tint-2); border: 1px solid var(--line); color: #334155; }

/* Comparison table */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table.cmp {
  width: 100%;
  min-width: 720px;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: 13.5px;
}
table.cmp th, table.cmp td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
table.cmp thead th {
  background: var(--tint-2);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}
table.cmp tbody tr:last-child td { border-bottom: none; }
table.cmp td:first-child, table.cmp th:first-child { font-weight: 600; color: #334155; }
.yes { color: var(--green-dark); font-weight: 700; }
.no  { color: #CBD5E1; font-weight: 700; }

/* CTA band */
.cta-band {
  background: var(--blue);
  color: #fff;
  text-align: center;
  padding: 62px 0;
}
.cta-band h2 { color: #fff; }
.cta-band p:not(:where(.ei-p)) { color: rgba(255, 255, 255, .9); max-width: 560px; margin: 0 auto 24px; }

/* Security band */
.security { text-align: center; }
.security .shield { margin: 0 auto 16px; }
.trust-row {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 22px;
}
.trust-row span {
  font-size: 12px; color: var(--muted);
  border: 1px solid var(--line); border-radius: 20px; padding: 5px 14px; background: #fff;
}

/* Pricing */
.price-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .18s, box-shadow .18s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-head { padding: 24px 24px 18px; }
.price-card h3 { font-size: 21px; margin: 10px 0 4px; }
.price-card .sub { font-size: 13px; color: var(--muted); margin-bottom: 18px; }
.setup-row {
  background: var(--tint-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 16px;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.setup-row .k { font-size: 10.5px; letter-spacing: .07em; text-transform: uppercase; color: var(--faint); font-weight: 700; }
.setup-row .s { font-size: 12px; color: var(--muted); }
.setup-row .amt { font-size: 24px; font-weight: 700; }

.tier-label {
  font-size: 10.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--faint); margin: 0 24px 10px;
}
.tiers { padding: 0 24px; display: flex; flex-direction: column; gap: 6px; margin-bottom: 22px; }
.tier {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 14px; border-radius: 8px;
}
.tier .t-l { font-size: 12.5px; font-weight: 600; color: #334155; }
.tier .t-s { font-size: 11px; color: var(--faint); }
.tier .t-v { font-size: 18px; font-weight: 700; text-align: right; }
.tier .t-u { font-size: 10px; color: var(--faint); text-align: right; }
.tier-1 { background: var(--tint-2); border: 1px solid var(--line); }
.tier-2 { background: #FFFBEB; border: 1px solid #FDE68A; }
.tier-3 { background: #F0FDF4; border: 1px solid #BBF7D0; }

.toggle {
  display: inline-flex; background: #fff; border: 1.5px solid var(--line);
  border-radius: 12px; padding: 4px; gap: 4px;
}
.toggle button {
  padding: 8px 24px; border-radius: 9px; border: none; background: none;
  font-size: 14px; font-weight: 600; color: var(--muted); cursor: pointer;
  font-family: inherit; position: relative; transition: all .15s;
}
.toggle button.active { background: var(--ink); color: #fff; }
.save-badge {
  position: absolute; top: -10px; right: -8px; background: var(--green); color: #fff;
  font-size: 9px; font-weight: 700; padding: 2px 6px; border-radius: 20px; letter-spacing: .05em;
}

/* Trust bar — thin dark strip of proof points, sits above the header */
.trust-bar {
  background: #0E1D30;
  padding: 0;
}
.trust-bar .wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 34px;
  padding-top: 0;
  padding-bottom: 0;
}
.trust-items {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  line-height: 1.3;
  color: #94A3B8;
  white-space: nowrap;
}
.trust-item strong { color: #fff; font-weight: 700; }
.trust-item svg { flex-shrink: 0; opacity: .85; }
.trust-meta {
  flex-shrink: 0;
  font-size: 11.5px;
  line-height: 1.3;
  color: #7C8CA3;
  white-space: nowrap;
}
.trust-meta a { color: #CBD5E1; font-weight: 600; }
.trust-meta a:hover { color: #fff; }

@media (max-width: 900px) {
  .trust-meta { display: none; }
  .trust-items { gap: 20px; }
}
@media (max-width: 560px) {
  .trust-bar .wrap { min-height: 32px; padding-top: 6px; padding-bottom: 6px; }
  .trust-items { gap: 8px 16px; }
  .trust-item { font-size: 11px; gap: 6px; }
}

/* Key takeaways — written to be quotable standalone */
.takeaways {
  background: var(--tint);
  border: 1.5px solid #BFDBFE;
  border-radius: 14px;
  padding: 24px 26px;
}
.takeaways h2 {
  font-size: 15px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--blue-dark);
  margin-bottom: 14px;
}
.takeaways ul { margin: 0; padding: 0; list-style: none; }
.takeaways li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 11px;
  font-size: 15.5px;
  line-height: 1.6;
  color: #1E3A5F;
}
.takeaways li:last-child { margin-bottom: 0; }
.takeaways li::before {
  content: "";
  position: absolute; left: 0; top: 7px;
  width: 16px; height: 16px; border-radius: 50%;
  background: #DBEAFE url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5.5 10.5l3 3 6-6' stroke='%231570CD' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/11px no-repeat;
}

/* Glossary */
.glossary { margin: 0; }
.gloss {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 84px;
}
.gloss:last-child { border-bottom: none; }
.gloss dt {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.gloss dd {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--body);
}
.gloss dd a { font-weight: 600; white-space: nowrap; }

/* Guides */
.guide-sec { padding: 34px 0; scroll-margin-top: 84px; }
.guide-sec + .guide-sec { border-top: 1px solid var(--line); }
.guide-sec h2 { font-size: 25px; margin-bottom: 14px; }
.guide-sec p:not(:where(.ei-p)) { font-size: 16.5px; line-height: 1.75; margin-bottom: 16px; }
.guide-sec p:not(:where(.ei-p)):last-child { margin-bottom: 0; }
.guide-sec .callout { margin: 20px 0 4px; }
.guide-sec .ledger li { font-size: 15px; }

.guide-meta {
  font-size: 13px;
  color: var(--faint);
  margin: -4px 0 0;
}

.guide-card { display: block; transition: transform .18s, box-shadow .18s, border-color .18s; }
.guide-card:hover {
  text-decoration: none;
  transform: translateY(-3px);
  border-color: #CBD5E1;
  box-shadow: var(--shadow-md);
}
.guide-card h3 { font-size: 16px; margin-bottom: 4px; }
.guide-card p:not(:where(.ei-p)) { font-size: 13px; color: var(--muted); margin: 0; }
.guide-card-lg { padding: 26px 24px; }
.guide-card-lg h3 { font-size: 20px; margin: 12px 0 8px; line-height: 1.3; }
.guide-card-lg p:not(:where(.ei-p)) { font-size: 14.5px; line-height: 1.6; margin-bottom: 16px; }
.guide-go { font-size: 14px; font-weight: 700; color: var(--blue-dark); }

/* FAQ hub page */
.faq-jumps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.faq-jump {
  display: inline-block;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 20px;
  padding: 7px 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: #334155;
  transition: border-color .15s, color .15s, background .15s;
}
.faq-jump:hover {
  text-decoration: none;
  border-color: var(--blue);
  color: var(--blue-dark);
  background: var(--tint);
}

.faq-cat { padding: 44px 0; scroll-margin-top: 84px; }
.faq-cat + .faq-cat { border-top: 1px solid var(--line); }
.faq-cat h2 { font-size: 24px; margin-bottom: 4px; }

/* Link from a page-level FAQ block up to the hub */
.faq-more {
  margin-top: 22px;
  text-align: center;
  font-size: 14px;
}

/* FAQ */
.faq details {
  background: #fff; border: 1.5px solid var(--line); border-radius: 12px;
  padding: 16px 20px; margin-bottom: 10px;
}
.faq summary {
  cursor: pointer; font-weight: 600; color: var(--ink); font-size: 15px;
  list-style: none; display: flex; justify-content: space-between; gap: 16px; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--blue); font-size: 20px; font-weight: 400; }
.faq details[open] summary::after { content: "–"; }
.faq details p:not(:where(.ei-p)) { margin: 12px 0 0; font-size: 14px; color: var(--muted); }

/* Page hero (interior pages) */
.page-hero { background: linear-gradient(180deg, #F5FAFF 0%, #FFFFFF 100%); padding: 56px 0 48px; }
.page-hero .badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.page-hero h1 { margin-bottom: 14px; }
.page-hero p.lead { max-width: 640px; }
.breadcrumb { font-size: 13px; color: var(--faint); margin-bottom: 16px; }
.breadcrumb a { color: var(--muted); }

/* Split section */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.split-panel {
  background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm);
}
.ledger { list-style: none; margin: 0; padding: 0; }
.ledger li {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 11px 0; border-bottom: 1px dashed var(--line); font-size: 14px;
}
.ledger li:last-child { border-bottom: none; }
.ledger .amt { font-weight: 700; color: var(--ink); white-space: nowrap; }
.ledger .amt.pos { color: var(--green-dark); }

/* Subtotal row — reads as the sum of the lines above it */
.ledger li.ledger-total {
  border-top: 1.5px solid var(--line);
  border-bottom: 1.5px solid var(--line);
  font-weight: 700;
  color: var(--ink);
}
.ledger li.ledger-total .amt { color: #DC2626; font-size: 15px; }

/* ---------- Insurance monitoring page ---------------------------------- */

.callout-red { background: #FEF2F2; border: 1px solid #FECACA; color: #7F1D1D; }

/* Eligibility banner — this feature only ships with certain products */
.eligibility {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #EFF6FF;
  border: 1.5px solid #BFDBFE;
  border-radius: 14px;
  padding: 18px 20px;
}
.eligibility svg { flex-shrink: 0; margin-top: 2px; }
.elig-title { font-size: 15px; font-weight: 700; margin-bottom: 5px; color: #1E3A5F; line-height: 1.35; }
.eligibility p:not(:where(.ei-p)) { font-size: 13.5px; color: #1E3A5F; margin: 0; line-height: 1.6; }
.eligibility .elig-links { margin-top: 10px; font-size: 13px; }
.eligibility .elig-links a { margin-right: 16px; font-weight: 600; }

/* Sample-data frame */
.sample-frame {
  border: 1.5px dashed #CBD5E1;
  border-radius: 16px;
  padding: 22px;
  background: repeating-linear-gradient(
    45deg, #FCFDFF, #FCFDFF 12px, #F7FAFF 12px, #F7FAFF 24px);
}
.sample-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #F1F5F9;
  color: #475569;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.sample-tag::before {
  content: "";
  width: 7px; height: 7px; border-radius: 50%;
  background: #94A3B8;
}

/* Premium history chart */
.chart-card { padding: 22px 24px 18px; }
.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 130px;
  margin-bottom: 10px;
}
.chart-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  height: 100%;
  justify-content: flex-end;
}
.chart-amt { font-size: 11px; font-weight: 700; color: var(--ink); }
.chart-amt.up { color: #DC2626; }
.chart-bar {
  width: 100%;
  border-radius: 6px 6px 0 0;
  min-height: 8px;
  background: #BFDBFE;
  transition: background .15s;
}
.chart-bar.current { background: #DC2626; }
.chart-bar:hover { background: var(--blue); }
.chart-bar.current:hover { background: #B91C1C; }
.chart-yr { font-size: 11px; color: var(--muted); }
.chart-note {
  border-top: 1px solid var(--line);
  padding-top: 10px;
  font-size: 12.5px;
  color: var(--muted);
  text-align: center;
}
.chart-note strong { color: #DC2626; }

/* Opt-in banner */
.optin {
  background: var(--blue);
  border-radius: 18px;
  padding: 34px 34px 30px;
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  color: #fff;
}
.optin-copy { flex: 1; min-width: 280px; }
.optin h2 { color: #fff; font-size: 26px; margin-bottom: 10px; }
.optin p:not(:where(.ei-p)) { color: rgba(255,255,255,.88); font-size: 14.5px; margin: 0; max-width: 520px; }
.optin .eyebrow {
  background: rgba(255,255,255,.18);
  color: #fff;
}
.optin-box {
  background: rgba(255,255,255,.14);
  border-radius: 14px;
  padding: 22px 26px;
  text-align: center;
  min-width: 210px;
}
.optin-box .k {
  font-size: 11px; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; color: rgba(255,255,255,.75); margin-bottom: 12px;
}
.optin-box .status { font-size: 13.5px; font-weight: 600; margin-top: 4px; }
.optin-box .fine { font-size: 11.5px; color: rgba(255,255,255,.6); margin-top: 8px; }

/* Coming soon treatments */
.pill-soon {
  background: #FEF3C7; color: #B45309;
}
.optin.soon { background: linear-gradient(135deg, #1570CD 0%, #2E90FA 100%); }
.soon-box {
  background: rgba(255,255,255,.14);
  border: 1px dashed rgba(255,255,255,.45);
  border-radius: 14px;
  padding: 22px 24px;
  text-align: center;
  min-width: 230px;
}
.soon-box .k {
  font-size: 11px; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; color: rgba(255,255,255,.75); margin-bottom: 10px;
}
.soon-box .big {
  font-size: 19px; font-weight: 700; color: #fff; margin-bottom: 14px;
}
.soon-box .fine { font-size: 11.5px; color: rgba(255,255,255,.62); margin-top: 10px; }

.lock-mask .soon-tag {
  display: inline-block;
  background: #FEF3C7; color: #B45309;
  font-size: 11px; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; padding: 4px 12px; border-radius: 20px;
  margin-bottom: 4px;
}

/* Preview-only table: dimmed and non-interactive behind the mask */
.lockable.preview-only .table-scroll { filter: grayscale(.35); opacity: .55; }

/* Toggle switch */
.switch { position: relative; display: inline-block; width: 62px; height: 32px; cursor: pointer; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch .track {
  position: absolute; inset: 0;
  background: rgba(255,255,255,.28);
  border-radius: 32px;
  transition: background .2s;
}
.switch .track::before {
  content: "";
  position: absolute;
  height: 24px; width: 24px;
  left: 4px; bottom: 4px;
  background: #fff;
  border-radius: 50%;
  transition: transform .2s;
}
.switch input:checked + .track { background: var(--green); }
.switch input:checked + .track::before { transform: translateX(30px); }
.switch input:focus-visible + .track { outline: 2px solid #fff; outline-offset: 2px; }

/* Locked overlay */
.lockable { position: relative; }
.lock-mask {
  position: absolute; inset: 0;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(3px);
  border-radius: var(--radius);
  z-index: 5;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 24px;
}
.lockable.locked .lock-mask { display: flex; }
.lock-mask h3 { font-size: 17px; margin: 0; }
.lock-mask p:not(:where(.ei-p)) { font-size: 13.5px; color: var(--muted); max-width: 320px; margin: 0; }

/* Comparison table extras */
.prov { font-weight: 700; color: var(--ink); }
.prov-sub { font-size: 12px; color: var(--faint); font-weight: 400; margin-top: 1px; }
.money { font-weight: 700; color: var(--ink); }
.money.save { color: var(--green-dark); }
.save-pill {
  display: inline-block;
  background: #E6F7EE; color: var(--green-dark);
  font-size: 11px; font-weight: 700;
  padding: 2px 8px; border-radius: 8px; margin-left: 6px;
  white-space: nowrap;
}
tr.best td { background: #F0FDF4; }
.delta-down { color: var(--green-dark); font-weight: 700; }
.delta-up { color: #DC2626; font-weight: 700; }

/* Value check form */
.vc-form { display: flex; flex-direction: column; gap: 15px; }
.vc-field { display: flex; flex-direction: column; gap: 6px; }
.vc-field label { font-size: 13px; font-weight: 600; color: var(--ink); }
.vc-field input, .vc-field select {
  padding: 10px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-size: 14px;
  color: var(--ink);
  background: #fff;
  font-family: inherit;
  outline: none;
  transition: border-color .15s;
}
.vc-field input:focus, .vc-field select:focus { border-color: var(--blue); }
.vc-field .hint { font-size: 11.5px; color: var(--faint); }

/* Value check results */
.vc-results { display: flex; flex-direction: column; gap: 12px; }
.vc-card {
  border-radius: 12px;
  padding: 16px 18px;
  border: 1.5px solid;
}
.vc-card.ok   { border-color: #BBF7D0; background: #F0FDF4; }
.vc-card.warn { border-color: #FED7AA; background: #FFF7ED; }
.vc-card.bad  { border-color: #FECACA; background: #FEF2F2; }
.vc-card h3 { font-size: 14.5px; margin-bottom: 6px; line-height: 1.35; }
.vc-card.ok h3   { color: var(--green-dark); }
.vc-card.warn h3 { color: #B45309; }
.vc-card.bad h3  { color: #B91C1C; }
.vc-card p:not(:where(.ei-p)) { font-size: 13.5px; color: var(--body); margin: 0; line-height: 1.6; }
.vc-action { margin-top: 10px; font-size: 12.5px; font-weight: 700; }
.vc-card.ok .vc-action   { color: var(--green-dark); }
.vc-card.warn .vc-action { color: #B45309; }
.vc-card.bad .vc-action  { color: #B91C1C; }

.vc-empty { text-align: center; padding: 40px 24px; }
.vc-empty h3 { font-size: 16px; margin-bottom: 6px; }
.vc-empty p:not(:where(.ei-p)) { font-size: 13.5px; color: var(--muted); margin: 0; }

/* Deductible meter */
.meter { margin: 14px 0 4px; }
.meter-track {
  height: 9px;
  border-radius: 9px;
  background: linear-gradient(to right, #F59E0B 0%, #22C55E 22%, #22C55E 62%, #F59E0B 100%);
  position: relative;
}
.meter-dot {
  position: absolute;
  top: -4px;
  width: 17px; height: 17px;
  border-radius: 50%;
  background: var(--ink);
  border: 2.5px solid #fff;
  box-shadow: 0 2px 6px rgba(15,23,42,.25);
  transform: translateX(-50%);
  transition: left .45s ease;
}
.meter-labels {
  display: flex; justify-content: space-between;
  margin-top: 8px; font-size: 10.5px; color: var(--faint);
}

@media (max-width: 700px) {
  .optin { padding: 26px 22px; }
  .chart-bars { height: 110px; gap: 6px; }
}

/* ---------- Get Started path chooser (modal) --------------------------- */

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, .55);
  backdrop-filter: blur(3px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow-y: auto;
}
.modal-backdrop.open { display: flex; }

.modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, .28);
  width: 100%;
  max-width: 720px;
  padding: 34px 32px 28px;
  position: relative;
  margin: auto;
  animation: modal-in .18s ease-out;
}
@keyframes modal-in {
  from { opacity: 0; transform: translateY(10px) scale(.985); }
  to   { opacity: 1; transform: none; }
}

.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 34px; height: 34px;
  border-radius: 8px;
  border: none;
  background: none;
  color: var(--muted);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.modal-close:hover { background: var(--tint-2); color: var(--ink); }

.modal h2 { font-size: 24px; margin-bottom: 6px; }
.modal .modal-sub { font-size: 14.5px; color: var(--muted); margin-bottom: 24px; }

.path-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 620px) { .path-grid { grid-template-columns: 1fr; } }

.path {
  display: block;
  text-align: left;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 22px 20px;
  background: #fff;
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.path:hover {
  text-decoration: none;
  border-color: var(--blue);
  box-shadow: 0 8px 26px rgba(46, 144, 250, .16);
  transform: translateY(-2px);
}
.path .path-icon {
  width: 42px; height: 42px;
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.path h3 { font-size: 17px; margin-bottom: 5px; }
.path p:not(:where(.ei-p)) { font-size: 13.5px; color: var(--muted); margin-bottom: 14px; line-height: 1.5; }
.path ul { list-style: none; margin: 0 0 16px; padding: 0; }
.path li {
  position: relative;
  padding-left: 18px;
  font-size: 12.5px;
  color: var(--body);
  margin-bottom: 5px;
}
.path li::before {
  content: "";
  position: absolute; left: 0; top: 7px;
  width: 5px; height: 5px; border-radius: 50%;
  background: #CBD5E1;
}
.path .path-go {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--blue-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.path:hover .path-go { gap: 10px; }

.modal-foot {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

/* Footer */
.site-footer { border-top: 1px solid var(--line); padding: 52px 0 30px; background: #fff; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; }
.footer-grid img { height: 30px; width: auto; margin-bottom: 12px; }
.footer-grid p:not(:where(.ei-p)) { font-size: 13px; color: var(--muted); max-width: 280px; }
.footer-col-title { font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 12px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { font-size: 13.5px; color: var(--muted); }
.footer-col a:hover { color: var(--blue-dark); }
.footer-bottom {
  border-top: 1px solid var(--line); margin-top: 36px; padding-top: 20px;
  text-align: center; font-size: 12.5px; color: var(--faint);
}
.footer-bottom a { color: var(--faint); margin: 0 8px; }
.disclaimer { max-width: 780px; margin: 14px auto 0; font-size: 11.5px; line-height: 1.6; color: #A8B4C4; }

/* ---------- Responsive ------------------------------------------------- */

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 780px) {
  .hamburger { display: block; }
  .nav-cta .btn-ghost { display: none; }

  .nav-links {
    display: none;
    position: absolute;
    top: 66px; left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 10px 16px 18px;
  }
  .nav-links.open { display: flex; }
  .nav-links a, .nav-toggle { width: 100%; justify-content: space-between; padding: 12px; }
  .dropdown {
    position: static;
    width: auto;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--line);
    border-radius: 0;
    margin: 2px 0 6px 12px;
    padding: 0 0 0 6px;
  }
  section { padding: 52px 0; }
  .hero { padding: 52px 0 44px; }
}

/* ---------- generated block utilities ---------------------------------
   These replace the inline style attributes of the static build, which the
   block editor would strip on save. Generated by wp_convert.py — edit the
   page in WordPress or regenerate rather than hand-editing this block. */

.ei-u01.ei-u01.ei-u01 { margin-top:20px; }
.ei-u02.ei-u02.ei-u02 { font-weight:700; letter-spacing:.06em; text-transform:uppercase; color:var(--faint); margin-bottom:10px; }
.ei-u03.ei-u03.ei-u03 { margin:14px 0 0; }
.ei-u04.ei-u04.ei-u04 { margin-top:28px; }
.ei-u05.ei-u05.ei-u05 { margin-top:22px; text-align:center; background:var(--tint-2); }
.ei-u06.ei-u06.ei-u06 { margin-bottom:6px; }
.ei-u07.ei-u07.ei-u07 { justify-content:flex-start; margin-top:22px; }
.ei-u08.ei-u08.ei-u08 { font-weight:700; letter-spacing:.06em; text-transform:uppercase; color:var(--faint); margin-bottom:12px; }
.ei-u09.ei-u09.ei-u09 { font-size:26px; font-weight:700; color:var(--blue); }
.ei-u10.ei-u10.ei-u10 { font-size:26px; font-weight:700; color:var(--blue-dark); }
.ei-u11.ei-u11.ei-u11 { font-size:26px; font-weight:700; color:var(--green-dark); }
.ei-u12.ei-u12.ei-u12 { margin-top:18px; }
.ei-u13.ei-u13.ei-u13 { margin-top:22px; }
.ei-u14.ei-u14.ei-u14 { margin-top:10px; }
.ei-u15.ei-u15.ei-u15 { margin-top:12px; }
.ei-u16.ei-u16.ei-u16 { padding:34px 24px; }
.ei-u17.ei-u17.ei-u17 { font-size:52px; font-weight:700; color:var(--ink); letter-spacing:-.03em; margin:12px 0 2px; }
.ei-u18.ei-u18.ei-u18 { font-size:15px; color:var(--muted); margin-bottom:18px; }
.ei-u19.ei-u19.ei-u19 { text-align:left; max-width:560px; margin:0 auto; }
.ei-u20.ei-u20.ei-u20 { font-size:26px; font-weight:700; color:#7C3AED; }
.ei-u21.ei-u21.ei-u21 { padding-bottom:20px; }
.ei-u22.ei-u22.ei-u22 { margin:0 auto 26px; }
.ei-u23.ei-u23.ei-u23 { color:#0F7B5A; }
.ei-u24.ei-u24.ei-u24 { padding:0 24px 24px; margin-top:auto; }
.ei-u25.ei-u25.ei-u25 { color:#1355A6; }
.ei-u26.ei-u26.ei-u26 { color:#6B21A8; }
.ei-u27.ei-u27.ei-u27 { margin-top:34px; }
.ei-u28.ei-u28.ei-u28 { font-weight:700; letter-spacing:.06em; text-transform:uppercase; color:var(--ink); margin-bottom:14px; }
.ei-u29.ei-u29.ei-u29 { gap:14px; margin-bottom:18px; }
.ei-u30.ei-u30.ei-u30 { background:var(--tint-2); border-radius:10px; padding:14px 16px; display:flex; gap:12px; align-items:center; }
.ei-u31.ei-u31.ei-u31 { width:34px; height:34px; border-radius:8px; background:#1A1A1A; color:#fff; display:flex; align-items:center; justify-content:center; font-weight:700; font-size:13px; flex-shrink:0; }
.ei-u32.ei-u32.ei-u32 { font-size:13px; font-weight:700; color:#1A1A1A; }
.ei-u33.ei-u33.ei-u33 { color:#475569; }
.ei-u34.ei-u34.ei-u34 { color:var(--faint); }
.ei-u35.ei-u35.ei-u35 { background:#FFFBEB; border-radius:10px; padding:14px 16px; display:flex; gap:12px; align-items:center; }
.ei-u36.ei-u36.ei-u36 { width:34px; height:34px; border-radius:8px; background:#B45309; color:#fff; display:flex; align-items:center; justify-content:center; font-weight:700; font-size:13px; flex-shrink:0; }
.ei-u37.ei-u37.ei-u37 { font-size:13px; font-weight:700; color:#B45309; }
.ei-u38.ei-u38.ei-u38 { background:#F0FDF4; border-radius:10px; padding:14px 16px; display:flex; gap:12px; align-items:center; }
.ei-u39.ei-u39.ei-u39 { width:34px; height:34px; border-radius:8px; background:#0F7B5A; color:#fff; display:flex; align-items:center; justify-content:center; font-weight:700; font-size:13px; flex-shrink:0; }
.ei-u40.ei-u40.ei-u40 { font-size:13px; font-weight:700; color:#0F7B5A; }
.ei-u41.ei-u41.ei-u41 { line-height:1.7; }
.ei-u42.ei-u42.ei-u42 { margin-bottom:12px; }
.ei-u43.ei-u43.ei-u43 { padding:32px 24px; }
.ei-u44.ei-u44.ei-u44 { font-size:48px; font-weight:700; color:var(--ink); letter-spacing:-.03em; margin:12px 0 2px; }
.ei-u45.ei-u45.ei-u45 { font-size:15px; color:var(--muted); margin-bottom:6px; }
.ei-u46.ei-u46.ei-u46 { max-width:520px; margin:0 auto 20px; }
.ei-u47.ei-u47.ei-u47 { align-items:start; }
.ei-u48.ei-u48.ei-u48 { margin:0; }
.ei-u49.ei-u49.ei-u49 { display:flex; flex-direction:column; gap:16px; }
.ei-u50.ei-u50.ei-u50 { padding:0; }
.ei-u51.ei-u51.ei-u51 { padding:18px 22px; border-bottom:1px solid var(--line); display:flex; align-items:center; gap:11px; }
.ei-u52.ei-u52.ei-u52 { width:34px; height:34px; margin:0; background:#FEF2F2; }
.ei-u53.ei-u53.ei-u53 { font-size:15px; margin:0; }
.ei-u54.ei-u54.ei-u54 { margin:1px 0 0; }
.ei-u55.ei-u55.ei-u55 { padding:18px 22px; }
.ei-u56.ei-u56.ei-u56 { margin-bottom:10px; }
.ei-u57.ei-u57.ei-u57 { padding:18px 22px 14px; border-bottom:1px solid var(--line); display:flex; align-items:center; gap:11px; }
.ei-u58.ei-u58.ei-u58 { width:34px; height:34px; margin:0; background:#E7F1FE; }
.ei-u59.ei-u59.ei-u59 { padding:20px 22px 16px; }
.ei-u60.ei-u60.ei-u60 { padding:0; overflow:hidden; }
.ei-u61.ei-u61.ei-u61 { border:none; border-radius:0; }
.ei-u62.ei-u62.ei-u62 { padding:16px 20px; border-top:1px solid var(--line); }
.ei-u63.ei-u63.ei-u63 { margin-bottom:18px; }
.ei-u64.ei-u64.ei-u64 { max-width:560px; margin:0 auto 36px; }
.ei-u65.ei-u65.ei-u65 { text-align:left; }
.ei-u66.ei-u66.ei-u66 { margin-top:14px; }
.ei-u67.ei-u67.ei-u67 { margin-bottom:22px; }
.ei-u68.ei-u68.ei-u68 { margin-bottom:26px; }
.ei-u69.ei-u69.ei-u69 { margin-top:16px; }
