/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Jul 13 2026 | 08:05:47 */
html {
  scroll-behavior: smooth;
}
:root {
  --plans-blue-turbo: #0a3e68;
  --plans-blue-dark:  #0d2d6e;
  --plans-blue-mid:   #1565c0;
  --plans-blue-light: #1e7fd4;
  --plans-blue-accent:#7db8e8;
  --plans-orange:     #e8621a;
  --plans-orange-dk:  #d05510;
  --plans-green:      #4caf50;
  --plans-green-dk:   #3d9140;
  --plans-white:      #ffffff;
  --plans-bg:         #f0f4f8;
  --plans-border:     #dde3ec;
  --plans-text:       #1a2b4a;
  --plans-muted:      #5a6a84;
  --plans-light:      #94a3b8;
  --plans-navy-card:  #0a3e68;
}
/* SEPARATOR */
.wp-block-separator {
    border: none;
    border-top: 1px solid #e4e4e4;
    width: 60%;
    margin: 40px auto;
}

/* HERO */
.hero, .footer-cta {
    background: linear-gradient(110deg, #043f6e 0%, #0a5ea0 30%, #0a5ea0 70%, #043f6e 100%);
}
.hero h1 em, .footer-cta h2 em {
    font-style: normal;
    color: #4dbfff;
}
.hero-cta {
    line-height: 1em;
}
.hero-cta em {
    font-weight: 400;
    font-size: 13px;
    opacity: 0.85;
}

/* TRUST BAR */
.trust-bar {
    /*background: linear-gradient(110deg, #0b2560 0%, #0d3080 25%, #1560c0 60%, #1e80d4 100%);*/
}
.trust-inner {
  max-width: 960px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
}
.trust-item {
  display: flex; align-items: flex-start; gap: 12px;
}
.trust-ico {
  width: 32px; height: 32px; flex-shrink: 0; margin-top: 2px;
  background: rgba(255,255,255,0.12); border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
}
.trust-ico svg { width: 16px; height: 16px; stroke: #4dbfff; fill: none; stroke-width: 2; }
.trust-item h4 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 3px; }
.trust-item p  { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.4; }
@media (max-width: 900px) {
  .trust-inner { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 560px) {
  .trust-bar { display: none; }
}

/* ── VOLUME SECTION ── */
.vol-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--plans-blue-turbo); color: #fff;
  font-size: 15px; font-weight: 600;
  padding: 8px 22px; border-radius: 22px; margin-bottom: 32px;
}
.vol-badge .lbl { color: #8899bb; font-weight: 400; }
.vol-badge .val { color: #fff; font-weight: 800; font-size: 17px; font-variant-numeric: tabular-nums; }
.slider-outer { max-width: 980px; margin: 0 auto; padding: 0 4px; }
.slider-wrap {
  position: relative; height: 28px;
  display: flex; align-items: center;
}
.slider-bg {
  position: absolute; top: 50%; left: 0; right: 0;
  height: 4px; background: #dde3ec; border-radius: 2px;
  transform: translateY(-50%); pointer-events: none; z-index: 0;
}
.slider-fill {
  position: absolute; top: 50%; left: 0;
  height: 8px; background: linear-gradient(110deg, #1565c0 0%, #5fb5ff 80%); border-radius: 2px;
  transform: translateY(-50%); pointer-events: none; z-index: 1;
  transition: width .08s;
}
.slider-dots {
  position: absolute; top: 50%; left: 0; right: 0;
  transform: translateY(-50%);
  pointer-events: none; z-index: 2;
}
.slider-dot {
  position: absolute; top: 50%; transform: translate(-50%, -50%);
  width: 18px; height: 18px; border-radius: 50%;
  background: #fff; border: 2px solid #dde3ec;
  transition: border-color .2s, background .2s;
}
.slider-dot.passed { background: var(--plans-blue-mid); border-color: var(--plans-blue-mid); }
.slider-dot.current {
  width: 20px; height: 20px;
  background: #fff; border: 3px solid var(--plans-blue-mid);
  box-shadow: 0 0 0 4px rgba(21,101,192,0.15);
  animation: slider-pulse 1.2s ease-in-out infinite;
}
@keyframes slider-pulse {
  0%   { box-shadow: 0 0 0 0   rgba(21,101,192,0.40); }
  70%  { box-shadow: 0 0 0 12px rgba(21,101,192,0); }
  100% { box-shadow: 0 0 0 0   rgba(21,101,192,0); }
}
input#slider {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 4px; background: transparent;
  position: relative; z-index: 3; cursor: pointer; outline: none;
}
input#slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: transparent; cursor: pointer;
}
input#slider::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%;
  background: transparent; border: none; cursor: pointer;
}
.slider-ticks { display: flex; justify-content: space-between; margin-top: 10px; }
.slider-ticks span {
  font-size: 15px; color: var(--plans-muted); cursor: pointer;
  font-weight: 500; transition: color .15s;
  width: 0; display: flex; justify-content: center; white-space: nowrap;
}
.slider-ticks span:hover { color: var(--plans-text); }
.slider-ticks span.active { color: var(--plans-blue-mid); font-weight: 800; }
@media (max-width: 560px) {
  .vol-section { padding: 40px 20px 0; }
  .slider-ticks span { font-size: 10px; }
}
@media (max-width: 700px) {
  /* Mostra solo le tacche "principali", nascondi le altre */
  #ticks span:not([data-i="0"]):not([data-i="2"]):not([data-i="6"]):not([data-i="9"]):not([data-i="13"]) {
    visibility: hidden;
  }
  /* Rimpicciolisci i dot secondari */
  .slider-dot:nth-child(2),   /* index 1 = 50K */
  .slider-dot:nth-child(4),   /* index 3 = 200K */
  .slider-dot:nth-child(6),   /* index 5 = 400K */
  .slider-dot:nth-child(8),   /* index 7 = 600K */
  .slider-dot:nth-child(9),   /* index 8 = 700K */
  .slider-dot:nth-child(11),  /* index 10 = 1.4M */
  .slider-dot:nth-child(12),  /* index 11 = 1.5M */
  .slider-dot:nth-child(13) { /* index 12 = 1.9M */
    width: 8px;
    height: 8px;
  }
}

/* BILLING SWITCH */
.billing-switch-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.billing-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--plans-bg);
  border: 1px solid var(--plans-border);
  border-radius: 30px;
  padding: 5px;
  position: relative;
}
.billing-switch button {
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--plans-muted);
  padding: 8px 22px;
  border-radius: 24px;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: color .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.billing-switch button.active { color: var(--plans-text); }

/* Inline "2 months free" pill inside Yearly button — grey when inactive, green when active */
.switch-save {
  display: inline-block;
  background: #d8dce8;
  color: var(--plans-muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .3px;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 10px;
  line-height: 1.4;
  transition: background .2s, color .2s;
}
.billing-switch button.active .switch-save {
  background: var(--plans-green);
  color: #fff;
}

.billing-switch .switch-thumb {
  position: absolute;
  top: 5px;
  height: calc(100% - 10px);
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 6px rgba(13,27,62,0.08);
  transition: left .25s ease, width .25s ease;
  z-index: 0;
}
.billing-switch.yearly .switch-thumb { transform: translateX(100%); }


/* ── PLANS ── */
.plans-section {padding: 52px 24px 0px; }
.plans-wrap {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  align-items: stretch;
}

/* Wrapper: default has top margin to reserve badge space */
.card-wrap {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  transition: margin-top .25s;
}
/* Lifted: card starts higher, appears taller */
.card-wrap.lifted { margin-top: 0; }

/* Base card fills wrapper fully */
.card {
  background: #fff;
  border: 1.5px solid var(--plans-border);
  border-radius: 20px;
  padding: 28px 22px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
  transition: border-color .25s, box-shadow .25s;
}

/* PRO always dark bg */
.card-pro { background: var(--plans-navy-card); }

/* Highlighted */
.card.highlighted-green {
  border: 2px solid var(--plans-green);
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}
.card.highlighted-orange {
  border: 2px solid var(--plans-orange);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

/* Badge */
.card-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  font-size: 9.5px; font-weight: 800; letter-spacing: .9px;
  text-transform: uppercase; padding: 3px 14px; border-radius: 20px; white-space: nowrap;
  display: none; z-index: 2;
}
.card-badge.visible { display: block; }
.badge-green  { background: var(--plans-green);  color: #fff; }
.badge-orange { background: var(--plans-orange); color: #fff; }

@media (max-width: 900px) {
  .plans-wrap { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 560px) {
  .plans-wrap { grid-template-columns: 1fr; }
}

/* Plan name */
.plan-name {
  font-size: 20px; font-weight: 800; color: var(--plans-text);
  display: flex; align-items: center; gap: 8px; margin-bottom: 6px;
}
.card-pro .plan-name { color: #fff; }
.featured-tag {
  font-size: 9px; font-weight: 800; letter-spacing: .8px;
  text-transform: uppercase; padding: 2px 8px; border-radius: 4px;
  background: var(--plans-orange); color: #fff;
}

/* Description — fixed height so price aligns across cards */
.plan-desc {
  font-size: 12px; color: var(--plans-muted);
  line-height: 1.45; margin-bottom: 16px;
  min-height: 52px;
}
.card-pro .plan-desc { color: #879dc2; }

/* Basic exceeded: upgrade title + note replace price-block visually */
.basic-upgrade-title {
  display: none;
  font-size: 20px; font-weight: 700;
  color: var(--plans-light);
  line-height: 1.6;
  margin-bottom: 2px;
}
.card-basic.exceeded .basic-upgrade-title { display: block; }
.basic-exceeded-note {
  display: none; font-size: 13px;
  color: var(--plans-light);
  margin-bottom: 16px;
}
.card-basic.exceeded .basic-exceeded-note { display: block; }
.card-basic.exceeded .price-block { display: none; }
.card-basic.exceeded .btn-orange {
  background: #d8dce8; color: #a0a8bc;
  pointer-events: none; cursor: not-allowed;
}

/* Price block */
.price-block { margin-bottom: 16px; }
.price {
  font-size: 34px; font-weight: 700; color: var(--plans-text);
  line-height: 1; display: flex; align-items: baseline; gap: 1px;
}
.card-pro .price { color: #fff; }
.price .sym { font-size: 18px; font-weight: 700; }
.price .mo  { font-size: 13px; font-weight: 400; color: var(--plans-muted); margin-left: 4px; }
.card-pro .price .mo { color: #5a7ab0; }
.price-note { font-size: 13px; color: var(--plans-muted); margin-top: 4px; min-height: 18px; }
.card-pro .price-note { color: #879dc2; }

/* Free badge */
.free-badge {
  display: inline-flex; align-items: center; gap: 5px;
  color: var(--plans-green); font-size: 13px; font-weight: 600;
}
.free-badge svg { width: 12px; height: 12px; fill: var(--plans-green); }

/* Enterprise price */
.ent-price { font-size: 36px; font-weight: 700; display: block !important; }

/* Pro exceeded — same logic as basic */
.pro-upgrade-title {
  display: none;
  font-size: 20px; font-weight: 900;
  color: #879dc2;
  line-height: 1.6;
  margin-bottom: 2px;
}
.card-pro.exceeded .pro-upgrade-title { display: block; }
.pro-exceeded-note {
  display: none; font-size: 13px;
  color: #879dc2;
  margin-bottom: 16px;
}
.card-pro.exceeded .pro-exceeded-note { display: block; }
.card-pro.exceeded .price-block { display: none; }
.card-pro.exceeded .btn-orange {
  background: #164d78; color: #4d5f88;
  pointer-events: none; cursor: not-allowed;
}

/* Pro trial banner above CTA — full-width strip */
.pro-trial-link {
  /*display: flex;*/
  display: none;
  flex-direction: column;
  align-items: center; 
  justify-content: center;
  gap: 2px;
  margin-top: auto;
  margin-bottom: 18px;
  padding: 4px 14px;
  background: var(--plans-green);
  border: none;
  border-radius: 7px;
  text-decoration: none;
  text-align: center;
  transition: background .15s;
}
.pro-trial-link .trial-title {
  font-size: 14px; font-weight: 700;
  color: #fff;
}
.pro-trial-link .trial-sub {
  font-size: 11px; font-weight: 400;
  color: rgba(255,255,255,0.55);
  margin-top: -5px;
}
.pro-trial-link:hover { background: var(--plans-green-dk); }
.card-pro.exceeded .pro-trial-link { display: none; }
.card-pro .btn-cta { margin-top: 0; }

/* Volume alloc */
.vol-alloc-wrap { margin-bottom: 16px; }
.vol-alloc-label {
  font-size: 9.5px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--plans-light); margin-bottom: 5px;
}
.card-pro .vol-alloc-label { color: #4e6893; }
.vol-alloc-val {
  font-size: 17px; font-weight: 800; color: var(--plans-text);
  font-variant-numeric: tabular-nums;
}
.card-pro .vol-alloc-val { color: #fff; }
.vol-alloc-val .unit { font-size: 12px; font-weight: 500; color: var(--plans-muted); }
.card-pro .vol-alloc-val .unit { color: #5a7ab0; }

/* Enterprise how-it-works replaces vol-alloc */
.ent-vol-placeholder { margin-bottom: 16px; }
.ent-box {
  background: #fffbf0; border: 1px solid #f0e4b8; border-radius: 9px;
  padding: 12px 14px;
}
.ent-box .ent-title {
  font-size: 9.5px; font-weight: 800; letter-spacing: 1px;
  text-transform: uppercase; color: var(--plans-orange-dk); margin-bottom: 7px;
}
.ent-box p { font-size: 11.5px; color: #7a6030; line-height: 1.5; }

.sep { border: none; border-top: 1px solid var(--plans-border); margin: 0 0 14px; }
.card-pro .sep { border-top-color: rgba(255,255,255,.1); }

/* Features */
.features { list-style: none; margin-bottom: 20px; margin-left: 0px; flex: 1; }
.features li {
  font-size: 12.5px; color: var(--plans-text);
  display: flex; align-items: flex-start; gap: 8px;
  padding: 4.5px 0; line-height: 1.35;
}
.card-pro .features li { color: #a0bce0; }
.features li.off { color: var(--plans-light); }
.features li.off span { text-decoration: line-through; }
.ico-check { width: 15px; height: 15px; flex-shrink: 0; margin-top: .5px; stroke: var(--plans-green); fill: none; stroke-width: 2.2; }
.ico-x     { width: 15px; height: 15px; flex-shrink: 0; margin-top: .5px; stroke: #c8cfe0; fill: none; stroke-width: 2.2; }

/* CTA buttons */
.btn-cta {
  width: 100%; font-family: inherit; font-size: 13.5px; font-weight: 700;
  padding: 11px 0; border-radius: 7px; cursor: pointer;
  text-align: center; text-decoration: none; display: block;
  transition: background .15s; margin-top: auto;
}
.btn-cta:hover {
  color: #fff;
}
.btn-outline-dark { background: transparent; border: 1.5px solid var(--plans-text); color: var(--plans-text); }
.btn-outline-dark:hover { background: var(--plans-bg); }
.btn-navy  { background: var(--plans-text); border: none; color: #fff; }
.btn-navy:hover { opacity: .88; }
.btn-cta-green { background: var(--plans-green); border: none; color: #fff; }
.btn-cta-green:hover { background: var(--plans-green-dk); }
.btn-orange { background: var(--plans-orange); border: none; color: #fff; }
.btn-orange:hover { background: var(--plans-orange-dk); }
.btn-outline-orange {
  background: transparent;
  border: 1.5px solid var(--plans-orange);
  color: var(--plans-orange);
}
.btn-outline-orange:hover { background: var(--plans-orange); color: #fff; }
.ent-sub { font-size: 10.5px; color: var(--plans-muted); text-align: center; margin-top: 8px; line-height: 1.4; }

@media (max-width: 900px) {
  .plans-wrap { grid-template-columns: repeat(2, 1fr); }
  .card.highlighted-green, .card.highlighted-orange { padding-top: 36px; }
}
@media (max-width: 560px) {
  .plans-wrap { grid-template-columns: 1fr; }
}

/* ── FEATURES COMPARISON TABLE ── */
.ftable-wrap {
  max-width: 1120px;
  margin: 60px auto 0;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(13,27,62,0.04);
  position: relative;
  padding-bottom: 24px;
}
.ftable-wrap.collapsed { padding-bottom: 0; }

/* Collapsed state: limit visible rows */
.ftable-wrap.collapsed { max-height: 720px; }

/* Gradient fade overlay when collapsed */
.ftable-fade {
  display: none;
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 180px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, #fff 80%);
  z-index: 1;
}
.ftable-wrap.collapsed .ftable-fade { display: block; }

/* Expand button — always visible, repositioned via class */
.ftable-expand-wrap {
  text-align: center;
  margin-top: 24px;
  position: relative;
  z-index: 3;
}
.ftable-wrap.collapsed .ftable-expand-wrap {
  position: absolute;
  left: 0; right: 0; bottom: 24px;
  margin-top: 0;
}
.ftable-expand-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--plans-navy-card);
  color: #fff;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 700;
  padding: 11px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(13,27,62,0.15);
  transition: background .15s, transform .1s;
  outline: none;
}
.ftable-expand-btn:focus { outline: none; }
.ftable-expand-btn:focus-visible {
  outline: 2px solid var(--plans-blue-mid);
  outline-offset: 2px;
}
.ftable-expand-btn:hover { background: var(--plans-blue-mid); }
.ftable-expand-btn:active { transform: scale(.98); }
.ftable-expand-btn svg {
  width: 14px; height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ftable {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  color: var(--plans-text);
}
/* Reset to defend against host theme styles (WordPress, etc.) */
.ftable,
.ftable thead,
.ftable tbody,
.ftable tr,
.ftable th,
.ftable td {
  border: 0;
  background: none;
  margin: 0;
}

/* Header */
.ftable thead tr { background: var(--plans-blue-turbo); }
.ftable thead th {
  padding: 22px 18px;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  text-align: center;
  letter-spacing: .3px;
}
.ftable thead th.ftable-feat-col {
  text-align: left;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.ftable thead th.ftable-th-pro {
  color: var(--plans-blue-accent);
  background: #0f4876;
  border-left: 1px solid rgba(125,184,232,0.25);
  border-right: 1px solid rgba(125,184,232,0.25);
}
.ftable thead th.ftable-th-ent { color: var(--plans-orange); }

/* Section row */
.ftable tbody tr.ftable-section-row td {
  background: var(--plans-bg);
  padding: 12px 18px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--plans-text);
  text-align: left;
  border-top: none;
}

/* Body cells */
.ftable tbody td {
  padding: 16px 18px;
  text-align: center;
  border-top: 1px solid var(--plans-border);
  font-size: 14px;
  color: var(--plans-text);
  vertical-align: middle;
}
.ftable tbody td.ftable-feat {
  text-align: left;
  font-weight: 600;
  color: var(--plans-text);
}
.ftable-note { font-size: 12px; color: var(--plans-muted); }

/* Common style for inline icons next to feature names (ext link & tooltip info) */
.ftable-ext-link,
.ftable-info {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 6px;
  width: 18px; height: 18px;
  padding: 0px;
  border-radius: 4px;
  color: var(--plans-blue-mid);
  background: rgba(21,101,192,0.10);
  vertical-align: middle;
  transition: background .15s, color .15s;
}
.ftable-ext-link {
  text-decoration: none;
}
.ftable-info {
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  font-family: inherit;
  position: relative;
}
.ftable-ext-link svg { width: 9px; height: 9px; }
.ftable-ext-link:hover,
.ftable-info:hover,
.ftable-info.active {
  background: var(--plans-blue-mid);
  color: #fff;
}
.ftable-info:focus { outline: none; }
.ftable-info:focus-visible { outline: 2px solid var(--plans-blue-mid); outline-offset: 2px; }

/* Tooltip bubble */
.ftable-info::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--plans-text);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.45;
  text-align: left;
  padding: 10px 12px;
  border-radius: 8px;
  width: 240px;
  white-space: normal;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s, transform .18s, visibility .18s;
  box-shadow: 0 8px 24px rgba(13,27,62,0.18);
  z-index: 10;
}
/* Arrow under bubble */
.ftable-info::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  border: 6px solid transparent;
  border-top-color: var(--plans-text);
  margin-bottom: -2px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s, transform .18s, visibility .18s;
  z-index: 11;
}
/* Show on hover (desktop) and on .active (mobile/click) */
@media (hover: hover) {
  .ftable-info:hover::after,
  .ftable-info:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
}
.ftable-info.active::after,
.ftable-info.active::before {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Yes / No / Add-on / Demo icons */
.ftable-yes, .ftable-no {
  display: inline-block; width: 18px; height: 18px;
  background-repeat: no-repeat; background-position: center;
}
.ftable-yes {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%234caf50' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><path d='M3 8.5l3.5 3.5 6.5-7'/></svg>");
}
.ftable-no {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23c8cfe0' stroke-width='2.2' stroke-linecap='round'><path d='M4 4l8 8M12 4l-8 8'/></svg>");
}
.ftable-addon {
  display: inline-block; padding: 3px 12px;
  border: 1px solid var(--plans-orange);
  color: var(--plans-orange);
  background: #fff7ea;
  border-radius: 6px;
  font-size: 12px; font-weight: 600;
}
.ftable-demo {
  display: inline-block; padding: 3px 10px;
  background: var(--plans-bg); color: var(--plans-muted);
  border-radius: 6px; font-size: 12px; font-weight: 500;
}

.ftable tbody tr:not(.ftable-section-row):hover td {
  background: rgba(21,101,192,0.025);
}

@media (max-width: 900px) {
  .ftable-wrap { overflow-x: auto; }
  .ftable { min-width: 760px; }
}
@media (max-width: 560px) {
  .features-table-section { padding: 48px 16px 56px; }
  .ftable-head h2 { font-size: 22px; }
}

/* ── EXPERT HELP BANNER ── */
.expert-banner,
.expert-banner * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  line-height: 1.4;
  text-align: left;
  font-family: inherit;
}
.expert-banner {
  max-width: 1120px;
  margin: 28px auto 0 !important;
  background: #fff !important;
  border: 1px solid var(--plans-border) !important;
  border-radius: 14px !important;
  padding: 28px 28px !important;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: 0 2px 8px rgba(13,27,62,0.04);
  width: 100%;
}
.expert-avatars {
  display: flex;
  flex-shrink: 0;
}
.expert-avatars .avatar {
  width: 44px; height: 44px;
  border-radius: 50% !important;
  background: var(--plans-bg);
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--plans-blue-mid);
  font-weight: 800;
  font-size: 14px;
  margin-left: -12px;
  box-shadow: 0 1px 3px rgba(13,27,62,0.08);
  flex-shrink: 0;
}
.expert-avatars .avatar:first-child { margin-left: 0; }
.expert-avatars .avatar.a-1 { background: rgba(21,101,192,0.12); color: var(--plans-blue-mid); }
.expert-avatars .avatar.a-2 { background: rgba(232,98,26,0.12); color: var(--plans-orange); }
.expert-avatars .avatar.a-3 { background: rgba(76,175,80,0.12); color: var(--plans-green); }
.expert-avatars .avatar img {
  width: 100% !important;
  height: 100% !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  display: block !important;
}

.expert-text {
  flex: 1;
  min-width: 0;
}
.expert-text h4 {
  font-size: 20px !important;
  font-weight: 800 !important;
  color: var(--plans-text) !important;
  margin: 0 0 1px 0 !important;
  padding: 0 !important;
  line-height: 1.3 !important;
  letter-spacing: 0;
}
.expert-text p {
  font-size: 16px !important;
  color: var(--plans-muted) !important;
  line-height: 1.5 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.expert-cta {
  flex-shrink: 0;
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  background: transparent !important;
  border: 1.5px solid var(--plans-blue-mid) !important;
  color: var(--plans-blue-mid) !important;
  font-family: inherit !important;
  font-size: 13.5px !important;
  font-weight: 700 !important;
  padding: 10px 22px !important;
  border-radius: 8px !important;
  cursor: pointer;
  text-decoration: none !important;
  transition: background .15s, color .15s !important;
  line-height: 1 !important;
}
.expert-cta:hover,
.expert-cta:focus,
.expert-cta:active {
  background: var(--plans-blue-mid) !important;
  color: #fff !important;
  text-decoration: none !important;
}
.expert-cta svg {
  flex-shrink: 0;
  display: inline-block;
}

@media (max-width: 700px) {
  .expert-banner {
    flex-direction: column;
    text-align: center !important;
    gap: 14px;
    padding: 24px 20px !important;
  }
  .expert-banner .expert-text,
  .expert-banner .expert-text h4,
  .expert-banner .expert-text p { text-align: center !important; }
  .expert-avatars { justify-content: center; }
  .expert-cta { width: 100%; justify-content: center; }
}

/* ── PAY AS YOU GO ── */
.payg-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(76,175,80,0.08);
  border: 1px solid rgba(76,175,80,0.3);
  color: var(--plans-green-dk);
  font-size: 12.5px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
}
.payg-note::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--plans-green);
}

/* Grid */
.payg-grid {
  margin: 30px auto 0px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  align-items: stretch;
}

/* Card wrapper for vertical lift on highlighted */
.payg-wrap {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
  transition: margin-top .25s;
}
.payg-wrap.lifted { margin-top: 0; }

/* Card */
.payg-card {
  background: #fff;
  border: 1.5px solid var(--plans-border);
  border-radius: 16px;
  padding: 22px 16px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: center;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.payg-card:hover {
  border-color: #c8d0e0;
  box-shadow: 0 6px 20px rgba(13,27,62,0.08);
  transform: translateY(-2px);
}
.payg-card.highlighted {
  border: 2px solid var(--plans-green);
  box-shadow: 0 8px 32px rgba(76,175,80,0.12);
}
.payg-card.highlighted:hover {
  border-color: var(--plans-green);
  box-shadow: 0 12px 40px rgba(76,175,80,0.20);
  transform: translateY(-2px);
}

/* Most-selected badge */
.payg-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--plans-green);
  color: #fff;
  font-size: 10px; font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  white-space: nowrap;
}
.payg-badge svg {
  width: 11px; height: 11px;
  fill: #fff;
}

/* Tier badge (small pill at top) */
.payg-tier {
  display: inline-flex;
  align-self: center;
  background: var(--plans-navy-card);
  color: #fff;
  font-size: 11px; font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 18px;
}

/* Email volume */
.payg-vol-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--plans-light);
  margin-bottom: 6px;
}
.payg-vol {
  font-size: 18px;
  font-weight: 800;
  color: var(--plans-text);
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
  margin-bottom: 20px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.payg-vol .unit {
  font-size: 13px;
  font-weight: 500;
  color: var(--plans-muted);
  margin-left: 4px;
}

/* Prepaid cost */
.payg-cost-label {
  font-size: 11.5px;
  color: var(--plans-muted);
  margin-bottom: 4px;
}
.payg-cost {
  font-size: 30px;
  font-weight: 900;
  color: var(--plans-text);
  line-height: 1;
  margin-bottom: 14px;
}
.payg-cost .one-time {
  font-size: 12px;
  font-weight: 500;
  color: var(--plans-muted);
  margin-left: 4px;
}
.payg-cost.custom { color: var(--plans-orange); font-size: 20px; line-height: 30px;}

/* Rate pill */
.payg-rate {
  display: inline-block;
  align-self: center;
  background: var(--plans-bg);
  color: var(--plans-muted);
  font-size: 11.5px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 6px;
  margin-bottom: 18px;
  font-variant-numeric: tabular-nums;
}

/* Buy now CTA */
.payg-cta {
  display: block;
  width: 100%;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 0;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  margin-top: auto;
  transition: background .15s, color .15s, border-color .15s;
}
.payg-cta:hover {
  color: #fff;
}
.payg-cta-orange {
  background: var(--plans-orange);
  border: none;
  color: #fff;
}
.payg-cta-orange:hover { background: var(--plans-orange-dk); }
.payg-cta-outline-orange {
  background: transparent;
  border: 1.5px solid var(--plans-orange);
  color: var(--plans-orange);
}
.payg-cta-outline-orange:hover {
  background: var(--plans-orange);
  color: #fff;
}

@media (max-width: 1100px) {
  .payg-grid { grid-template-columns: repeat(3, 1fr); gap: 24px 12px; }
}
@media (max-width: 700px) {
  .payg-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 12px; }
  .payg-wrap, .payg-wrap.lifted { margin-top: 0; }
}
@media (max-width: 480px) {
  .payg-grid { grid-template-columns: 1fr; gap: 24px; }
  .payg-section { padding: 48px 16px 56px; }
  .payg-head h2 { font-size: 24px; }
}

/* ── GENERIC SECTION EYEBROW ── */
.plans-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--plans-bg);
  border: 1px solid var(--plans-border);
  color: var(--plans-text);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.plans-eyebrow svg {
  width: 14px; height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── FAQ SECTION ── */
/* List */
.faq-list {
  max-width: 920px;
  margin: 0 auto 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Single item */
.faq-item {
  position: relative;
  background: #fff;
  border: 1px solid var(--plans-border);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow .2s, border-color .2s;
}
.faq-item:hover { box-shadow: 0 4px 14px rgba(13,27,62,0.06); }
.faq-item.open { border-color: #c8d0e0; box-shadow: 0 6px 20px rgba(13,27,62,0.08); }

/* Colored side bar */
.faq-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--plans-border);
}
.faq-item.accent-orange::before { background: var(--plans-orange); }
.faq-item.accent-blue::before   { background: var(--plans-blue-mid); }
.faq-item.accent-cyan::before   { background: var(--plans-blue-accent); }
.faq-item.accent-green::before  { background: var(--plans-green); }

/* Question button (toggle) */
.faq-q {
  width: 100%;
  background: transparent !important;
  border: none;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--plans-text);
  text-align: left;
  padding: 18px 56px 18px 28px;
  cursor: pointer;
  position: relative;
  transition: color .15s;
}
.faq-q:hover,
.faq-q:focus,
.faq-q:active {
  background: transparent !important;
  color: var(--plans-blue-mid);
}
.faq-q:focus { outline: none; }
.faq-q:focus-visible { outline: 2px solid var(--plans-blue-mid); outline-offset: -2px; }

/* +/- icon */
.faq-q::after {
  content: '';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 18px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%231a2b4a' stroke-width='2' stroke-linecap='round'><path d='M8 3v10M3 8h10'/></svg>");
  transition: transform .25s;
}
.faq-item.open .faq-q::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%231a2b4a' stroke-width='2' stroke-linecap='round'><path d='M3 8h10'/></svg>");
}

/* Answer (collapsed by default) */
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-a-inner {
  padding: 0 28px 22px;
  font-size: 14px;
  color: var(--plans-muted);
  line-height: 1.6;
}
.faq-item.open .faq-a { max-height: 400px; }

/* Footer CTA */
.faq-footer {
  text-align: center;
  margin-top: 32px;
}
.faq-footer p {
  font-size: 13.5px;
  color: var(--plans-muted);
  margin-bottom: 14px;
}
.faq-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent!important;
  border: 1.5px solid var(--plans-blue-mid)!important;
  color: var(--plans-blue-mid)!important;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none !important;
  transition: background .15s;
}
.faq-cta:hover { background: var(--plans-blue-mid) !important; color: #fff !important; }

@media (max-width: 560px) {
  .faq-section { padding: 48px 16px 56px; }
  .faq-head h2 { font-size: 24px; }
  .faq-q { font-size: 14px; padding: 16px 50px 16px 22px; }
  .faq-a-inner { padding: 0 22px 18px; font-size: 13.5px; }
}

/* ── FINAL TRUST + CTA BANNER ── */
.final-banner,
.final-banner * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: inherit;
}
.final-banner {
  margin: 0 auto !important;
  padding: 0px !important;
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: center;
  gap: 80px;
  position: relative;
  overflow: hidden;
}

/* Left side — text + CTA */
.final-left {
  min-width: 0;
  position: relative;
  z-index: 1;
}
.final-left h2 {
  font-size: 36px !important;
  font-weight: 700 !important;
  color: #fff !important;
  line-height: 1.25 !important;
  margin-bottom: 8px !important;
  letter-spacing: -.3px;
}
.final-left p {
  font-size: 16px !important;
  color: rgba(255,255,255,0.7) !important;
  line-height: 1.55 !important;
  margin-bottom: 22px !important;
  max-width: 520px;
}
.final-cta {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  background: var(--plans-green) !important;
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  padding: 16px 40px !important;
  border: none !important;
  border-radius: 8px !important;
  cursor: pointer;
  text-decoration: none !important;
  transition: background .15s !important;
  line-height: 1 !important;
}
.final-cta:hover,
.final-cta:focus,
.final-cta:active {
  background: var(--plans-green-dk) !important;
  color: #fff !important;
  text-decoration: none !important;
}

/* Right side — trust signals stacked vertically */
.final-trust {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.final-trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.final-trust-ico {
  width: 36px; height: 36px;
  flex-shrink: 0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
}
.final-trust-ico svg {
  width: 22px; height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.final-trust-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.final-trust-text strong {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.final-trust-text span {
  font-size: 13.5px;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
}

@media (max-width: 900px) {
  .final-banner {
    grid-template-columns: 1fr;
    padding: 32px 28px !important;
    gap: 28px;
    text-align: center;
  }
  .final-banner::before { display: none; }
  .final-left h2,
  .final-left p { text-align: center !important; }
  .final-left p { margin-left: auto !important; margin-right: auto !important; }
  .final-trust {
    display: none;
  }
  .final-trust-item {
    display: inline-flex;
    width: auto;
  }
}
@media (max-width: 560px) {
  .final-banner { padding: 28px 20px !important; }
  .final-left h2 { font-size: 22px !important; }
}
