/* ================================
   PROMO BAR - refrsports.com - Pricing Page
   Evergreen version (no seasonal copy)
   ================================ */

/* Make the whole bar interactive, premium, and comfortably tall */
.promo-block {
  background: linear-gradient(
    180deg,
    rgba(255,215,0,0.95) 0%,
    rgba(255,200,0,0.95) 60%,
    rgba(255,170,0,0.9) 100%
  );
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  cursor: pointer;
  border-bottom: 2px solid rgba(0,0,0,.1);
  position: relative;
  z-index: 1000;
  transition: box-shadow .25s ease, transform .25s ease, background .25s ease;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.35); /* soft light edge */
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.4),
    inset 0 -1px 2px rgba(0,0,0,0.15),
    0 3px 10px rgba(255, 215, 0, 0.25); /* subtle depth */
  backdrop-filter: saturate(140%) blur(4px); /* inner “glass” polish */
  box-sizing: border-box;
  padding: 12px 18px;             /* ⬅ comfortable vertical padding */
  min-height: 52px;               /* ⬅ prevents “too skinny” bar */
}

/* Shine sweep (subtle, premium cue) */
.promo-block::before {
  content:"";
  position:absolute;
  top:0;
  left:-75%;
  width:50%;
  height:100%;
  background:linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.45) 50%,
    rgba(255,255,255,0) 100%
  );
  transform:skewX(-20deg);
  pointer-events:none;
  transition:left .9s ease-in-out;
}

.promo-block:hover::before {
  left:125%;
}

/* Hover lift + soft gold glow */
.promo-block:hover {
  background: linear-gradient(90deg, #FFC300, #FFB700);
  box-shadow: 0 4px 15px rgba(255,209,0,.35);
  transform: translateY(-1px);
}

/* Keyboard focus ring for a11y */
.promo-block:focus-visible {
  outline: 2px solid #111;
  outline-offset: -4px;
  box-shadow: 0 0 0 2px rgba(255,209,0,.6) inset;
}

/* Reset inner spacing, but keep natural line-height */
.promo-block,
.promo-block > a,
.promo-block h1,
.promo-block .banner-link-txt,
.promo-block .gift-emoji,
.promo-block .arrow-text {
  margin: 0;
  padding: 0;
  vertical-align: middle;
}

/* Inline layout using your heading */
.promo-block h1 {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}

/* Emoji on the left */
.gift-emoji {
  font-size: 16px;
  margin-right: 6px;
  display: inline-flex;
  align-items: center;
  transform-origin:center;
  animation: promoPulse 1.8s infinite ease-in-out;
}

/* Main message text */
.banner-link-txt {
  font-size: clamp(14px, 1.05vw, 16px);
  letter-spacing:.3px;
}

/* Arrow on the right */
.arrow-text {
  font-size: 16px;
  margin-left: 6px;
  opacity:.8;
  display:inline-flex;
  align-items:center;
  transition: transform .3s ease, opacity .3s ease;
}

/* Encourage click with a tiny nudge */
.promo-block:hover .arrow-text {
  transform: translateX(4px) translateY(-2px);
  opacity:1;
}

/* Emoji pulse */
@keyframes promoPulse {
  0%,100% { transform:scale(1);   opacity:1; }
  50%     { transform:scale(1.22); opacity:.85; }
}

/* Inner pill that hugs content */
.promo-inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 26px;
  border-radius: 999px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.25) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  box-shadow:
    inset 0 1px 3px rgba(255, 255, 255, 0.25),
    inset 0 -1px 4px rgba(0, 0, 0, 0.25),
    0 2px 8px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(8px) saturate(160%);
  -webkit-backdrop-filter: blur(8px) saturate(160%);
  margin: 0 auto;
  text-align: center;
  width: fit-content;
  max-width: 90vw;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Hover motion on pill */
.promo-inner:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    inset 0 1px 4px rgba(255, 255, 255, 0.3),
    inset 0 -1px 6px rgba(0, 0, 0, 0.25),
    0 4px 10px rgba(255, 215, 0, 0.35);
}

/* Combined hover with parent */
.promo-block:hover .promo-inner {
  transition-delay: 0.05s;
  transform: translateY(-1px) scale(1.01);
}

/* Ensure anchors don’t add extra padding */
.promo-block a {
  display: inline-flex;
  align-items: center;
  padding: 0;
  margin: 0;
  height: auto;
}

/* Mobile tweaks */
@media (max-width: 480px) {
  .promo-block {
    padding: 10px 12px;
    min-height: 48px;
  }
  .promo-block h1 {
    font-size: 13px;
    white-space: normal;
  }
  .promo-block .gift-emoji,
  .promo-block .arrow-text {
    font-size: 14px;
    margin: 0 4px;
  }
}


/* ---------- Design Tokens ---------- */
:root {
  --bg: #fff;
  --ink: #0a0a0a;
  --muted: #6b7280;
  --border: #e5e7eb;
  --surface: #f7f7f8;
  --surface-2:#fafafa;
  --brand:#ffc400;
  --brand-hover:#ffd84d;
  --brand-ink:#111;
  --shadow-sm: 0 2px 10px rgba(0,0,0,.05);
  --shadow-md: 0 10px 30px rgba(0,0,0,.08);
  --radius: 12px;
  --radius-lg: 16px;
}

/* ---------- Card ---------- */
.pricing-plan-card-starter {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 2rem;
  width: 360px;
  display:flex;
  flex-direction:column;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s cubic-bezier(.2,.8,.2,1);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans";
  color: var(--ink);
  background-image: radial-gradient(1200px 400px at 50% -20%, rgba(255,196,0,.06), transparent);
}
.pricing-plan-card-starter:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

/* ---------- Header ---------- */
.pricing-plan-header { margin-bottom: .875rem; }
.pricing-plan-name {
  font-size:1.125rem;
  font-weight:800;
  margin-bottom:.25rem;
  display: block;
}
.pricing-plan-price {
  font-feature-settings:"tnum" 1,"lnum" 1;
  font-size: 2.75rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom:.1rem;
}
.pricing-plan-per-year {
  color: var(--muted);
  margin:.1rem 0 1.1rem;
  font-size: .95rem;
}
.pricing-plan-price-note {
  color:#9aa1ac;
  font-size:.9rem;
  margin-top:.25rem;
}

/* ---------- Features ---------- */
.pricing-plan-features-list {
  border-top:1px solid #edf0f3;
  border-bottom:1px solid #edf0f3;
  padding: 1rem 0;
  margin: .75rem 0 1rem;
}
.pricing-plan-feature {
  margin:.4rem 0;
  font-size:.98rem;
  display:flex;
  align-items:center;
  gap:.5rem;
  color:#1f2937;
}
.pricing-plan-feature::before {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
  background: no-repeat center center / contain;
}

.pricing-plan-non-feature {
  margin: .4rem 0;
  font-size: .98rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  color: #9ca3af;
  opacity: 0.65;
}

.pricing-plan-non-feature::before {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
  background: no-repeat center center / contain;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E");
}

/* Starter card check color */
.pricing-plan-card-starter .pricing-plan-feature::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23bbbbbb' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

/* ---------- Dropdown (fixed alignment) ---------- */
.pricing-plan-drop-totals { margin-top:1.1rem; }
.pricing-plan-add-games {
  font-weight:700;
  font-size:.96rem;
  color:#1f2937;
  margin-bottom:.5rem;
}
.pricing-plan-dropdown .w-dropdown-toggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  border: 1px solid #d7dbe2;
  border-radius: 10px;
  padding: 0.7rem 2.4rem 0.7rem 0.9rem;
  background: var(--bg);
  font-size: 0.97rem;
  color: #111827;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.08s ease;
  overflow: hidden;
  white-space: nowrap;
}
.pricing-plan-dropdown .w-dropdown-toggle:hover {
  border-color:#cfd4dd;
  box-shadow: 0 1px 0 rgba(0,0,0,.03);
}
.pricing-plan-dropdown-text {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pricing-plan-dropdown-icon {
  position: absolute;
  right: 1.1rem;
  top: 50%;
  transform: translateY(-75%);
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1;
  pointer-events: none;
}
.w-dropdown-list {
  border:1px solid #e6e7ec;
  border-radius:12px;
  overflow:hidden;
  background:#fff;
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
  margin-top:.4rem;
  display:none;
}
.w-dropdown-list.w--open { display:block; }
.w-dropdown-list a {
  display:flex; align-items:center; justify-content:space-between;
  padding:.7rem .9rem;
  font-size:.95rem;
  color:#111827;
  transition: background .12s ease;
}
.w-dropdown-list a:hover { background:#f7f8fa; }

/* ---------- Totals table ---------- */
.pricing-plan-totals-table {
  background: var(--surface-2);
  border:1px solid #eff1f4;
  border-radius: 14px;
  padding: 1rem 1.1rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  font-size: .95rem;
  color:#2b2f36;
}
.pricing-plan-totals-table div {
  display:flex; justify-content:space-between; align-items:center;
  margin:.36rem 0; line-height:1.45;
}
.pricing-plan-totals-label { color:#6b7280; font-weight:500; }
.pricing-plan-totals-value { font-weight:700; color:#111827; }
.pricing-plan-totals-table .highlight { color: var(--brand); font-weight:800; }
.pricing-plan-totals-table .divider {
  border-top:1px solid #e8eaee; margin-top:.65rem; padding-top:.45rem;
}
.pricing-plan-annual-total .pricing-plan-totals-label { font-weight:800; color:#111827; }

/* ---------- Change flash ---------- */
@keyframes flash {
  0% { background: rgba(255,196,0,.18); }
  100% { background: transparent; }
}
.changed { animation: flash .6s ease-out; border-radius:6px; }

/* ---------- Buttons ---------- */
.pricing-plan-free-trial,
.pricing-plan-free-trial.w-button,
.pricing-plan-free-trial a,
.pricing-plan-free-trial button,
.pricing-plan-free-trial > a.w-button,
.pricing-plan-free-trial > button {
  display:block;
  width:100%;
  text-align:center;
  padding:1rem 1.1rem;
  border-radius:10px;
  font-weight:700;
  font-size:1rem;
  letter-spacing:.1px;
  background:#fff;
  color:#111;
  border:1.8px solid #111;
  transition:transform .2s ease, box-shadow .25s ease, background .2s ease, color .2s ease, border-color .2s ease;
  margin-top: 0.25rem;
  margin-bottom: 0.75rem;
}
.pricing-plan-free-trial:hover {
  background:#111;
  color:#fff;
  transform:translateY(-1px);
  box-shadow:0 6px 16px rgba(0,0,0,.12);
}

.pricing-plan-demo,
.pricing-plan-demo.w-button,
.pricing-plan-demo a,
.pricing-plan-demo button,
.pricing-plan-demo > a.w-button,
.pricing-plan-demo > button {
  display:block;
  width:100%;
  text-align:center;
  padding:1rem 1.1rem;
  border-radius:10px;
  font-weight:700;
  font-size:1rem;
  letter-spacing:.1px;
  background:#ffc400;
  color:#111;
  border:1.5px solid transparent;
  box-shadow:0 3px 8px rgba(255,196,0,.30);
  transition:transform .2s ease, box-shadow .25s ease, filter .2s ease, background .2s ease, color .2s ease;
  margin-top: 0;
}
.pricing-plan-demo:hover {
  filter:brightness(1.03);
  transform:translateY(-1px);
  box-shadow:0 8px 22px rgba(255,196,0,.35);
}

/* ---------- Small screens ---------- */
@media (max-width: 420px){
  .pricing-plan-card-starter{ width:100%; padding:1.4rem; }
  .pricing-plan-price{ font-size:2.25rem; }
}

/* ---------- PROFESSIONAL CARD ---------- */
.pricing-plan-card-professional {
  background: var(--bg);
  border: 1px solid rgba(3,183,216,0.85);
  border-radius: var(--radius-lg);
  box-shadow:
    0 0 12px rgba(3,183,216,0.15),
    0 0 24px rgba(3,183,216,0.10);
  padding: 2rem;
  width: 360px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s cubic-bezier(.2,.8,.2,1);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans";
  color: var(--ink);
  background-image: radial-gradient(1200px 400px at 50% -20%, rgba(3,183,216,.08), transparent);
}
.pricing-plan-card-professional:hover {
  transform: translateY(-6px);
  box-shadow:
    0 0 20px rgba(3,183,216,0.25),
    0 0 40px rgba(3,183,216,0.15);
}

/* ---------- Badge ---------- */
.pricing-plan-badge {
  position: absolute;
  top: -0.9rem;
  left: 50%;
  transform: translateX(-50%);
  background: #03b7d8;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(3,183,216,0.35);
  letter-spacing: 0.2px;
  text-align: center;
}

/* Professional feature check color */
.pricing-plan-card-professional .pricing-plan-feature::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%2303b7d8' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

/* Totals highlight */
.pricing-plan-card-professional .pricing-plan-totals-table .highlight {
  color: #03b7d8;
}

/* Demo button override */
.pricing-plan-card-professional .pricing-plan-demo {
  background: #03b7d8;
  box-shadow: 0 3px 8px rgba(3,183,216,0.3);
}
.pricing-plan-card-professional .pricing-plan-demo:hover {
  filter: brightness(1.05);
  box-shadow: 0 8px 22px rgba(3,183,216,0.4);
}

/* ---------- COMMERCIAL CARD ---------- */
.pricing-plan-card-commercial {
  background: var(--bg);
  border: 1px solid rgba(255,209,0,0.7);
  border-radius: var(--radius-lg);
  box-shadow:
    0 0 12px rgba(255,209,0,0.18),
    0 0 32px rgba(255,209,0,0.12);
  padding: 2rem;
  width: 360px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s cubic-bezier(.2,.8,.2,1);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans";
  color: var(--ink);
  background-image: radial-gradient(1200px 400px at 50% -20%, rgba(255,209,0,.10), transparent);
}
.pricing-plan-card-commercial:hover {
  transform: translateY(-6px);
  box-shadow:
    0 0 24px rgba(255,209,0,0.35),
    0 0 48px rgba(255,209,0,0.18);
}

/* Badge (Gold Gradient) */
.pricing-plan-badge-commercial {
  position: absolute;
  top: -0.9rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #ffd100, #ffb700);
  color: #111;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  box-shadow: 0 3px 10px rgba(255,209,0,0.45);
  letter-spacing: 0.2px;
  text-align: center;
}

/* Gold checkmarks */
.pricing-plan-card-commercial .pricing-plan-feature::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23ffd100' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

/* Demo button override */
.pricing-plan-card-commercial .pricing-plan-demo {
  background: linear-gradient(90deg, #ffd100, #ffb700);
  color: #111;
  border: 1.5px solid transparent;
  box-shadow: 0 3px 8px rgba(255,209,0,0.35);
}
.pricing-plan-card-commercial .pricing-plan-demo:hover {
  filter: brightness(1.06);
  box-shadow: 0 8px 22px rgba(255,209,0,0.45);
}

/* Glow Accent */
.pricing-plan-card-commercial::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(145deg, rgba(255,209,0,0.65), rgba(255,209,0,0.25));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* ---------- PRICE LAYOUT: original vs discounted (evergreen) ---------- */

/* Use inline layout so original + discounted amounts sit side by side */
.pricing-plan-price {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
}

/* Original price (muted, strikethrough) */
.pricing-price-original {
  font-size: 0.95rem;
  font-weight: 600;
  color: #9ca3af;
  text-decoration: line-through;
  opacity: 0.9;
  transform: translateY(-3px);
}

/* Discounted price – let cards control color */
.pricing-price-discount {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.1;
  color: inherit;
  letter-spacing: 0.01em;
  text-shadow: none;
}


/* Note under price – neutral copy */
.pricing-plan-price-note {
  color: #9aa1ac;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 0.35rem;
}

/* ---------- FIX: Grid layout spacing & centering ---------- */
.pricing-div-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, max-content));
  justify-content: center;
  justify-items: center;
  align-items: start;
  gap: 2.5rem;
  width: 100%;
  max-width: 1336px;
  margin-left: auto;
  margin-right: auto;
}

/* allow cards to size correctly inside the grid */
.pricing-plan-card-starter,
.pricing-plan-card-professional,
.pricing-plan-card-commercial {
  width: 100%;
  max-width: 360px;
}

/* POP EFFECT for middle Professional card */
.pricing-plan-card-professional {
  transform: scale(1.05);
  z-index: 2;
  border: 2px solid rgba(3,183,216,0.95);
  box-shadow:
    0 0 18px rgba(3,183,216,0.18),
    0 0 36px rgba(3,183,216,0.10);
}
.pricing-plan-card-professional:hover {
  transform: scale(1.06) translateY(-4px);
  box-shadow:
    0 0 25px rgba(3,183,216,0.25),
    0 0 50px rgba(3,183,216,0.15);
}

/* Starter price – keep yellow */
.pricing-plan-card-starter .pricing-price-discount {
  color: #ffc400;
}

/* Professional price – match card blue */
.pricing-plan-card-professional .pricing-price-discount {
  color: #03b7d8;
}

/* Commercial price – subtle gold shimmer */
.pricing-plan-card-commercial .pricing-price-discount {
  background: linear-gradient(90deg, #ffd100, #ffb700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #ffd100; /* fallback for non-WebKit */
}



/* ---------- ADD-ONS SECTION ---------- */
.addons-section {
  background: #f9fafb;
  padding: 3rem 1rem 6rem;
  text-align: center;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans";
  color: var(--ink);
}

/* Heading & Subheading */
.addons-heading {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  color: #111827;
}
.addons-heading span {
  color: #03b7d8;
}
.addons-subheading {
  color: #6b7280;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

/* Grid Layout */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  justify-items: center;
  align-items: stretch;
}

/* Individual Add-On Card */
.addon-card {
  background: var(--bg);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  padding: 2rem 1.5rem 2.2rem;
  transition: transform 0.3s cubic-bezier(.2,.8,.2,1), box-shadow 0.3s cubic-bezier(.2,.8,.2,1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}
.addon-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(3,183,216,0.18);
}

/* Icon */
.addon-icon {
  width: 60px;
  height: 60px;
  background: rgba(3,183,216,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.35rem;
  position: relative;
}
.addon-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(3,183,216,0.25), transparent 70%);
  opacity: 0.8;
  z-index: 0;
}
.addon-icon img {
  width: 38px;
  height: auto;
  position: relative;
  z-index: 1;
  object-fit: contain;
}

/* Title */
.addon-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 0.2rem;
}

/* Price */
.addon-price {
  font-size: 1.4rem;
  font-weight: 900;
  color: #03b7d8;
  margin-bottom: 0.75rem;
}

/* Description */
.addon-desc {
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 280px;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .addons-section {
    padding: 4rem 1.5rem;
  }
  .addons-grid {
    gap: 2rem;
  }
  .addon-card {
    padding: 1.75rem 1.25rem 2rem;
  }
  .addon-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 0.3rem;
  }
  .addon-icon img {
    width: 35px;
  }
  .addon-price {
    font-size: 1.3rem;
  }
  .addon-desc {
    max-width: 100%;
  }
}

/* ---------- REFR PAY SECTION ---------- */
.refrpay-section {
  background: #fff;
  padding: 3rem 1rem 6rem;
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans";
}
.refrpay-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Heading */
.refrpay-heading-wrap { margin-bottom: 2.5rem; }
.refrpay-heading {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.15;
  color: #111827;
  margin-bottom: 0.35rem;
}
.refrpay-subtext {
  color: var(--muted);
  font-size: 1.1rem;
  margin-top: 0;
}

/* REFRPAY FEATURE CARD */
.refrpay-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto 5rem;
  justify-items: center;
  align-items: stretch;
}
.refrpay-feature-card {
  background: var(--bg);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  padding: 2.5rem 1.75rem 2.75rem;
  transition:
    transform 0.35s cubic-bezier(.2,.8,.2,1),
    box-shadow 0.35s cubic-bezier(.2,.8,.2,1),
    border-color 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  cursor: pointer;
}
.refrpay-feature-card:hover {
  transform: translateY(-8px);
  border-color: #000;
  box-shadow: 0 14px 36px rgba(0,0,0,0.16);
}
.refrpay-feature-card:hover .refrpay-feature-icon {
  box-shadow: 0 0 26px rgba(255, 230, 0, 0.8);
  transition: box-shadow 0.25s ease-in-out;
}

/* Icon */
.refrpay-feature-icon {
  width: 64px;
  height: 64px;
  background: radial-gradient(circle at center, #ffe600 0%, #ffd100 40%, #ffcc00 80%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  position: relative;
  box-shadow: 0 0 18px rgba(255, 230, 0, 0.6);
}
.refrpay-feature-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255,209,0,0.25), transparent 70%);
  opacity: 0.8;
  z-index: 0;
}
.refrpay-feature-icon img {
  width: 38px;
  height: auto;
  position: relative;
  z-index: 1;
  object-fit: contain;
}

/* Title */
.refrpay-feature-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 0.8rem !important;
}

/* Accent Text */
.refrpay-feature-price {
  font-size: 1.4rem;
  font-weight: 900;
  color: #ffd100;
  margin-bottom: 0.75rem;
}

/* Description */
.refrpay-feature-desc {
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 280px;
  margin-top: 0.8rem !important;
}

/* Responsive */
@media (max-width: 768px) {
  .refrpay-feature-grid {
    gap: 2rem;
  }
  .refrpay-feature-card {
    padding: 1.75rem 1.25rem 2rem;
  }
  .refrpay-feature-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 0.3rem;
  }
  .refrpay-feature-icon img {
    width: 35px;
  }
  .refrpay-feature-price {
    font-size: 1.3rem;
  }
  .refrpay-feature-desc {
    max-width: 100%;
  }
}

/* ---------- PAYOUTS SECTION ---------- */
.refrpay-payouts {
  background: #0a0a0a;
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 3rem 1.5rem 3.75rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.refrpay-payouts-heading {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.2;
  margin: 0 auto 3rem;
  color: #fff;
}

/* Payout Steps */
.refrpay-payouts-steps-row {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 4rem;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  align-items: start;
  justify-items: center;
  text-align: center;
}
.refrpay-payouts-steps {
  width: 100%;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin: 0 !important;
  text-align: center;
}

/* Step Circle */
.refrpay-step-num {
  background: var(--brand);
  color: #111;
  font-weight: 900;
  font-size: 1.1rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 1rem 0;
  box-shadow: 0 0 22px rgba(255,196,0,.35);
}

/* Step Text */
.refrpay-step-title {
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0 0 .4rem 0;
}
.refrpay-step-desc {
  color: #d1d5db;
  font-size: .96rem;
  line-height: 1.5;
  margin: 0;
}

/* Pulse Animation */
@keyframes pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 rgba(255,196,0,0); }
  50% { transform: scale(1.05); box-shadow: 0 0 15px rgba(255,196,0,0.35); }
}
.refrpay-step-num {
  animation: pulse 3s infinite;
}

/* Responsive */
@media (max-width: 900px) {
  .refrpay-heading {
    font-size: 2.4rem;
  }
  .refrpay-payouts-heading {
    font-size: 1.7rem;
    margin-bottom: 2.5rem;
  }
  .refrpay-payouts-steps-row {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 520px;
  }
}

/* ---------- ORGANIZATION PAYMENT SECTION ---------- */
.orgpayment-section {
  background: #f9fafb;
  padding: 3rem 1rem 6rem;
  color: #111827;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
.orgpayment-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Heading */
.orgpayment-heading-wrap {
  margin-bottom: 3.5rem;
}
.orgpayment-heading {
  font-size: 2.25rem;
  font-weight: 900;
  color: #111827;
  margin-bottom: 0.5rem;
}
.orgpayment-subtext {
  color: #6b7280;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Options Grid */
.orgpayment-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
  justify-items: center;
}

/* Option Card */
.orgpayment-option-card {
  position: relative;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
  padding: 2.5rem 2rem;
  text-align: left;
  width: 100%;
  max-width: 520px;
  transition: transform 0.3s cubic-bezier(.2, .8, .2, 1), box-shadow 0.3s ease;
  background: linear-gradient(145deg, #f9feff 0%, #fff 80%);
}
.orgpayment-option-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(3, 183, 216, 0.12);
}

/* Icon */
.orgpayment-option-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(3, 183, 216, 0.08);
  margin-bottom: 1.25rem;
}
.orgpayment-option-icon img {
  width: 30px;
  height: auto;
}

/* Badge */
.orgpayment-option-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: linear-gradient(90deg, #00c4e6, #03b7d8);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(3, 183, 216, 0.35);
}

/* Title, Fee, Description */
.orgpayment-option-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 0.25rem;
}
.orgpayment-option-fee {
  font-size: 1.35rem;
  font-weight: 900;
  color: #03b7d8;
  margin-bottom: 0.75rem;
}
.orgpayment-option-desc {
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.1rem;
}

/* Option List & Items */
.orgpayment-option-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.orgpayment-option-item {
  font-size: 0.96rem;
  color: #1f2937;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.orgpayment-option-item::before {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  margin-right: 0.45rem;
  background: no-repeat center center / contain;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%2303b7d8' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

/* SECURITY SECTION */
.orgpayment-security {
  background: linear-gradient(90deg, #0a0a0a, #1a1a1a);
  color: #fff;
  border-radius: 16px;
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1.25rem;
  text-align: left;
}

/* Left Side */
.orgpayment-security-left {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex: 1 1 auto;
  text-align: left;
}
.orgpayment-security-icon {
  width: 48px;
  height: 48px;
  background: rgba(3, 183, 216, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.orgpayment-security-icon img {
  width: 26px;
  height: auto;
  opacity: 0.9;
}
.orgpayment-security-text-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}
.orgpayment-security-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin: 0 0 2px 0;
}
.orgpayment-security-desc {
  color: #d1d5db;
  font-size: 0.9rem;
  line-height: 1.45;
  margin: 0;
}

/* Right Side (Stripe badge) */
.orgpayment-security-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* STRIPE BADGE */
.orgpayment-stripe-badge {
  background: rgba(3, 183, 216, 0.12);
  border: 1px solid rgba(3, 183, 216, 0.3);
  border-radius: 10px;
  padding: 0.6rem 1rem;
  color: #03b7d8;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  max-height: 48px;
}
.orgpayment-stripe-badge img {
  max-width: 90px;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 4px rgba(3,183,216,0.25));
}

/* FOOTER */
.orgpayment-footer {
  text-align: center;
  margin-top: 2.5rem;
}
.orgpayment-footer-text {
  font-weight: 700;
  color: #111827;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}
.orgpayment-footer-button {
  background: #ffc400;
  color: #111;
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 2.25rem;
  border-radius: 10px;
  display: inline-block;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 12px rgba(255,196,0,0.25);
}
.orgpayment-footer-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(255,196,0,0.35);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .orgpayment-heading {
    font-size: 1.85rem;
  }
  .orgpayment-options-grid {
    grid-template-columns: 1fr;
  }
  .orgpayment-security {
    flex-direction: column;
    align-items: flex-start;
  }
  .orgpayment-security-left {
    justify-content: flex-start;
  }
  .orgpayment-security-right {
    margin-left: 0;
    justify-content: center;
  }
  .orgpayment-footer-button {
    width: 100%;
    max-width: 300px;
  }
}

/* ---------- PRICING HERO SECTION (evergreen) ---------- */
.pricing-hero-section {
  position: relative;
  background: #000;
  color: #fff;
  text-align: center;
  padding: 3rem 1rem 3rem;
  overflow: hidden;
}

/* Bottom gradient fade into white */
.pricing-hero-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #fff 100%);
  pointer-events: none;
}

/* Container */
.pricing-hero-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Heading */
.pricing-hero-heading-wrap {
  margin-bottom: 1.5rem;
}
.pricing-hero-heading {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #fff;
  position: relative;
}
.pricing-hero-heading::after {
  content: " Zero Upcharge.";
  color: #ffcc00;
  text-shadow: 0 0 10px rgba(255, 204, 0, 0.3);
}

/* Subtext */
.pricing-hero-subtext {
  font-size: 1.15rem;
  color: #cfd1d4;
  max-width: 680px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

/* Trusted Text */
.pricing-hero-trust-text {
  font-size: 0.95rem;
  color: #9ca3af;
  margin-bottom: 2.5rem;
}

/* CTA Buttons */
.pricing-hero-cta-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.pricing-hero-button-yellow,
.pricing-hero-button-blue {
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.25s ease;
  text-decoration: none;
  cursor: pointer;
}

/* Yellow Button */
.pricing-hero-button-yellow {
  background: #ffcc00;
  color: #000;
  box-shadow: 0 4px 10px rgba(255, 196, 0, 0.3);
}
.pricing-hero-button-yellow:hover {
  background: #ffdb33;
  transform: translateY(-2px);
}

/* Blue Button */
.pricing-hero-button-blue {
  background: #03b7d8;
  color: #fff;
  box-shadow: 0 4px 10px rgba(3, 183, 216, 0.3);
}
.pricing-hero-button-blue:hover {
  background: #05c4e8;
  transform: translateY(-2px);
}

/* Footnote */
.pricing-hero-footnote {
  font-size: 0.85rem;
  color: #9ca3af;
  margin-top: 0.75rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .pricing-hero-heading {
    font-size: 2.25rem;
  }
  .pricing-hero-subtext {
    font-size: 1rem;
  }
  .pricing-hero-cta-wrap {
    flex-direction: column;
  }
  .pricing-hero-button-yellow,
  .pricing-hero-button-blue {
    width: 100%;
    max-width: 260px;
  }
}

/* ---------- FOOTER CTA SECTION ---------- */
.footer-cta-section {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 3rem 1rem 5rem;
}
.footer-cta-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Heading + Subtext */
.footer-cta-heading-wrap {
  margin-bottom: 2.5rem;
}
.footer-cta-heading {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #ffd100;
  line-height: 1.25;
}
.footer-cta-subtext {
  color: #cfd1d4;
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 650px;
  margin: 0 auto;
}

/* Buttons */
.footer-cta-buttons-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.footer-cta-button-yellow,
.footer-cta-button-blue {
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.25s ease;
  text-decoration: none;
  cursor: pointer;
}
.footer-cta-button-yellow {
  background: #ffcc00;
  color: #000;
  box-shadow: 0 4px 10px rgba(255, 196, 0, 0.3);
}
.footer-cta-button-yellow:hover {
  background: #ffdb33;
  transform: translateY(-2px);
}
.footer-cta-button-blue {
  background: #03b7d8;
  color: #fff;
  box-shadow: 0 4px 10px rgba(3, 183, 216, 0.3);
}
.footer-cta-button-blue:hover {
  background: #05c4e8;
  transform: translateY(-2px);
}

/* Trust Text */
.footer-cta-trust-text {
  font-size: 0.9rem;
  color: #9ca3af;
  margin-top: 0.75rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-cta-heading {
    font-size: 1.9rem;
  }
  .footer-cta-buttons-wrap {
    flex-direction: column;
  }
  .footer-cta-button-yellow,
  .footer-cta-button-blue {
    width: 100%;
    max-width: 280px;
  }
}

/* RESPONSIVE SPACING FOR STACKED PRICING CARDS */
@media (max-width: 991px) {
  .pricing-div-main {
    gap: 4rem;
  }
  .pricing-plan-card-starter,
  .pricing-plan-card-professional,
  .pricing-plan-card-commercial {
    margin-bottom: 2.5rem;
  }
  .pricing-plan-card-commercial {
    margin-bottom: 0;
  }
}

/* Stripe badge placement on tablets/phones (≤991px) */
@media (max-width: 991px) {
  .orgpayment-security {
    flex-direction: column;
    align-items: flex-start;
  }
  .orgpayment-security-left {
    width: 100%;
  }
  .orgpayment-security-right {
    width: 100%;
    margin-left: 0;
    justify-content: flex-start;
  }
  .orgpayment-stripe-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 0.9rem;
    border-radius: 8px;
    margin-top: 0.5rem;
    max-height: none;
  }
  .orgpayment-stripe-badge img {
    max-width: 80px;
    height: auto;
  }
}

/* ============================
   START FREE TRIAL MODAL
   ============================ */

.trial-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: none; /* toggled via JS */
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* When open */
.trial-modal-overlay.is-open {
  display: flex;
}

.trial-modal {
  background: radial-gradient(1200px 400px at 50% -20%, rgba(255,196,0,0.10), transparent),
              #050505;
  border-radius: var(--radius-lg, 16px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.6),
    0 0 24px rgba(255, 209, 0, 0.30);
  padding: 2rem 2.2rem 2.1rem;
  max-width: 460px;
  width: 100%;
  color: #f9fafb;
  position: relative;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Close button */
.trial-modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.9rem;
  border: none;
  background: transparent;
  color: #9ca3af;
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}
.trial-modal-close:hover {
  color: #f9fafb;
}

/* Header */
.trial-modal-header {
  margin-bottom: 1.4rem;
}
.trial-modal-header h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0 0 0.35rem;
  color: #fefce8;
}
.trial-modal-subtitle {
  margin: 0;
  font-size: 0.98rem;
  color: #d1d5db;
}

/* Form layout */
.trial-modal-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.trial-modal-field-row {
  display: flex;
  gap: 0.75rem;
}
.trial-modal-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.trial-modal-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #e5e7eb;
}
.trial-modal-field input,
.trial-modal-field select {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #4b5563;
  background: rgba(15, 23, 42, 0.9);
  color: #f9fafb;
  padding: 0.65rem 0.75rem;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.trial-modal-field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: none;
}
.trial-modal-field input::placeholder {
  color: #6b7280;
}
.trial-modal-field input:focus {
  border-color: #facc15;
  box-shadow: 0 0 0 1px rgba(250, 204, 21, 0.7);
  background: rgba(15, 23, 42, 1);
}

/* Error text */
.trial-modal-error {
  min-height: 1.1rem;
  margin: 0.15rem 0 0;
  font-size: 0.84rem;
  color: #f97373;
}

/* Submit button */
.trial-modal-submit {
  margin-top: 0.4rem;
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.95rem 1.1rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  background: linear-gradient(120deg, #ffd100, #ffb700);
  color: #111;
  border: 1.5px solid #111;
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.6),
    0 0 22px rgba(255, 209, 0, 0.45);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.25s ease, filter 0.2s ease;
}
.trial-modal-submit:hover {
  filter: brightness(1.04);
  transform: translateY(-1px);
  box-shadow:
    0 8px 22px rgba(0, 0, 0, 0.8),
    0 0 26px rgba(255, 209, 0, 0.65);
}

.trial-modal-footnote {
  margin: 0.7rem 0 0;
  font-size: 0.8rem;
  color: #9ca3af;
}

/* Responsive */
@media (max-width: 520px) {
  .trial-modal {
    margin: 0 1.1rem;
    padding: 1.6rem 1.4rem 1.7rem;
  }
  .trial-modal-field-row {
    flex-direction: column;
  }
}
