:root {
  --blue:   #0b2e59;
  --blue-2: #123f73;
  --orange: #f97316;
  --ink:    #172033;
  --muted:  #667085;
  --line:   #d9e1ec;
  --paper:  #f5f8fc;
  --white:  #ffffff;
  --shadow: 0 18px 45px rgba(11, 46, 89, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}
a { color: var(--blue); text-decoration: none; }
button, input, select, textarea { font: inherit; }
table { width: 100%; border-collapse: collapse; min-width: 720px; }
th, td { padding: 13px 12px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
th { color: var(--blue); font-size: 13px; text-transform: uppercase; letter-spacing: 0; background: #f8fbff; }

/* ── Topbar ── */
.topbar {
  position: sticky; top: 0; z-index: 10;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 14px clamp(16px, 4vw, 44px);
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--ink); }

/* Topbar logo image */
.brand-mark {
  height: 46px;
  width: auto;
  border-radius: 8px;
  flex-shrink: 0;
  display: block;
}

.brand small { display: block; color: var(--muted); font-size: 12px; }
.topbar nav { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.topbar form { margin: 0; }
.topbar button, .link-danger {
  border: 0; background: transparent; color: var(--blue); cursor: pointer; padding: 0;
}

/* ── Shell / layout ── */
.shell { width: min(1180px, calc(100% - 32px)); margin: 0 auto; padding: 32px 0 56px; }
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  gap: 24px; align-items: stretch;
  padding: clamp(28px, 5vw, 64px) 0 34px;
}
.hero h1 { margin: 0; color: var(--blue); font-size: clamp(34px, 5vw, 58px); line-height: 1.05; }
.hero p { color: var(--muted); font-size: 18px; max-width: 720px; }

/* ── Carousel — full viewport width (breaks out of .shell) ── */
.home-carousel {
  position: relative;
  margin: -32px calc(50% - 50vw) 34px;
  width: 100vw;
  max-width: 100vw;
  overflow: hidden;
  background: var(--blue);
  min-height: 420px;
}
.carousel-slide { display: none; position: relative; min-height: 420px; }
.carousel-slide.active { display: block; }
.carousel-slide img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.carousel-slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,46,89,.92), rgba(11,46,89,.58), rgba(11,46,89,.18)); }
.carousel-slide.fallback::after { background: linear-gradient(120deg, var(--blue), var(--blue-2)); }
.carousel-copy {
  position: relative; z-index: 1;
  width: min(720px, calc(100% - 64px));
  margin: 0 auto 0 max(24px, calc((100vw - 1180px) / 2 + 24px));
  padding: clamp(34px, 7vw, 76px) 0;
  color: var(--white);
}
.carousel-copy h1 { margin: 0; font-size: clamp(34px, 5vw, 58px); line-height: 1.05; color: var(--white); }
.hero-title-link { color: inherit; text-decoration: none; transition: opacity .15s ease; }
.hero-title-link:hover { opacity: .85; text-decoration: underline; text-underline-offset: 6px; }
.carousel-copy p { color: rgba(255,255,255,.86); font-size: 18px; }
.eyebrow { margin: 0 0 10px; color: var(--orange); font-weight: 800; text-transform: uppercase; font-size: 13px; }

/* ── Utilities ── */
.actions, .section-head, .inline-form, .tabs { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.section-head { justify-content: space-between; margin: 10px 0 18px; }
.section-head h1, .section-head h2 { margin: 0; color: var(--blue); }
.section-head span { color: var(--muted); }

/* ── Buttons ── */
.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 10px 18px;
  border: 1px solid var(--orange); border-radius: 8px;
  background: var(--orange); color: var(--white); font-weight: 800; cursor: pointer;
}
.button.ghost { background: var(--white); color: var(--blue); border-color: var(--line); }
.button.small { min-height: 36px; padding: 7px 12px; font-size: 14px; }
.button.full { width: 100%; }

/* ── Cards / Panels ── */
.panel, .card, .auth-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 8px; box-shadow: var(--shadow);
}
.panel { padding: clamp(18px, 3vw, 28px); margin-bottom: 20px; overflow-x: auto; }
.panel.narrow, .auth-card { width: min(520px, 100%); margin: 30px auto; padding: clamp(22px, 4vw, 34px); }
.auth-card h1, .panel h1, .panel h2, .card h2, .card h3 { color: var(--blue); margin-top: 0; }
.cards { display: grid; gap: 18px; }
.cards.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card { padding: 22px; }
.plan { display: flex; flex-direction: column; gap: 10px; }
.plan ul { padding-left: 20px; color: var(--muted); min-height: 130px; }
.price { display: block; color: var(--blue); font-size: 34px; line-height: 1; }
.price small { color: var(--muted); font-size: 14px; margin-left: 4px; }
.feature-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 16px; }
.feature-grid span { padding: 12px; border-radius: 8px; background: #f8fbff; border: 1px solid var(--line); font-weight: 700; }

/* ── Forms ── */
.form { display: grid; gap: 14px; }
.form.grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.form label { display: grid; gap: 7px; color: var(--blue); font-weight: 750; }
.form .wide { grid-column: 1 / -1; }
.form input, .form select, .form textarea,
.inline-form input, .inline-form select {
  width: 100%; min-height: 43px; padding: 10px 12px;
  border: 1px solid var(--line); border-radius: 8px;
  background: #fff; color: var(--ink);
}
.form textarea { min-height: 110px; resize: vertical; }
.check { display: flex !important; grid-template-columns: none !important; align-items: center; gap: 8px !important; }
.check input { width: auto; min-height: auto; }
.flash { padding: 12px 14px; border-radius: 8px; margin-bottom: 16px; border: 1px solid var(--line); background: #fff; }
.flash.success { border-color: #98d9ad; color: #116329; background: #f0fff4; }
.flash.error { border-color: #fecaca; color: #991b1b; background: #fff5f5; }
.muted { color: var(--muted); }
.error-detail { white-space: pre-wrap; padding: 12px; border: 1px solid #fecaca; border-radius: 8px; background: #fff5f5; color: #991b1b; overflow-x: auto; }

/* ── Metrics / Dashboard ── */
.metrics { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; margin-bottom: 20px; }
.metrics div { padding: 18px; background: var(--blue); color: var(--white); border-radius: 8px; }
.metrics small { display: block; opacity: .78; }
.metrics strong { display: block; font-size: 28px; line-height: 1.2; margin-top: 6px; }
.metrics a { color: var(--white); }
.status { display: inline-flex; padding: 4px 9px; border-radius: 999px; background: #eef5ff; color: var(--blue); font-weight: 800; font-size: 13px; }
.pay-box { padding: 14px; border: 1px solid var(--line); border-radius: 8px; background: #f8fbff; margin: 16px 0; }
.pay-box p { margin: 8px 0 0; color: var(--muted); }
.summary { display: grid; grid-template-columns: 150px 1fr; gap: 10px 16px; }
.summary dt { color: var(--muted); }
.summary dd { margin: 0; font-weight: 800; }
.chart { height: 220px; display: flex; align-items: end; gap: 12px; padding: 16px; border: 1px solid var(--line); border-radius: 8px; background: #f8fbff; }
.chart span { display: block; width: 42px; border-radius: 8px 8px 0 0; background: var(--orange); }
.invoice { background: #fff; color: #111827; padding: 32px; }
.invoice header, .invoice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }

/* ═══════════════════════════════════════════════════════════════
   FOOTER  — BigRock-style multi-column layout
   ═══════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--blue);
  color: rgba(255,255,255,.75);
  margin-top: 40px;
}

.footer-inner,
.footer-bottom-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

/* ── Top block: brand col + link cols ── */
.footer-inner {
  display: grid;
  grid-template-columns: 280px repeat(auto-fill, minmax(130px, 1fr));
  gap: 40px 32px;
  padding: 52px 0 44px;
}

/* ── Brand column ── */
.footer-brand { display: flex; flex-direction: column; gap: 16px; }

.footer-logo-wrap {
  display: flex; align-items: center; gap: 12px;
}

/* Footer logo image */
.footer-mark {
  height: 44px;
  width: auto;
  border-radius: 8px;
  flex-shrink: 0;
  display: block;
  background: #fff;
  padding: 2px;
}

.footer-logo-wrap strong { display: block; color: #fff; font-size: 16px; line-height: 1.2; }
.footer-logo-wrap small  { display: block; color: rgba(255,255,255,.45); font-size: 12px; }

.footer-tagline {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(255,255,255,.55);
  max-width: 260px;
}

.footer-contact {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 7px;
}
.footer-contact li { font-size: 13px; color: rgba(255,255,255,.6); }
.footer-contact a {
  color: rgba(255,255,255,.65);
  transition: color .15s;
}
.footer-contact a:hover { color: var(--orange); }

/* ── Link columns ── */
.footer-col h3 {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: #fff;
}
.footer-col ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,.62);
  transition: color .15s;
}
.footer-col ul li a:hover { color: var(--orange); }

/* ── Bottom bar ── */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 18px 0;
  font-size: 13px;
  color: rgba(255,255,255,.45);
}
.footer-bottom-inner strong { color: rgba(255,255,255,.7); }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { color: rgba(255,255,255,.45); transition: color .15s; }
.footer-legal a:hover { color: var(--orange); }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero, .cards.three, .form.grid, .metrics,
  .invoice header, .invoice-grid { grid-template-columns: 1fr; }
  .topbar { align-items: flex-start; }
  .topbar nav { justify-content: flex-end; }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
    padding: 36px 0 32px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-tagline { max-width: 100%; }
}

@media (max-width: 620px) {
  .topbar { position: static; flex-direction: column; }
  .topbar nav { justify-content: flex-start; }
  .hero h1 { font-size: 34px; }
  .carousel-copy h1 { font-size: 34px; }
  .actions .button { width: 100%; }
  .metrics strong { font-size: 24px; }

  .footer-inner { grid-template-columns: 1fr; gap: 24px; padding: 28px 0 24px; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-legal { gap: 12px; }
}

.feature-tabs-section {
  padding: 56px 0 64px;
}

.feature-tabs-title {
  text-align: center;
  font-size: clamp(26px, 4vw, 38px);
  color: var(--ink);
  font-weight: 800;
  margin: 0 0 36px;
}

/* Tab nav row */
.feature-tabs-nav {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
  margin-bottom: 44px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.feature-tabs-nav::-webkit-scrollbar { display: none; }

.feature-tab-btn {
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 14px 4px 16px;
  font-size: 17px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  white-space: nowrap;
  transition: color .2s, border-color .2s;
}
.feature-tab-btn:hover { color: var(--ink); }
.feature-tab-btn.active {
  color: var(--ink);
  font-weight: 800;
  border-bottom-color: var(--orange);
}

/* Tab panel — two column: text left, image right */
.feature-tab-panel {
  display: none;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.feature-tab-panel.active {
  display: grid;
}

.feature-tab-text h3 {
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.25;
  margin: 0 0 18px;
}
.feature-tab-text p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  margin: 0;
  max-width: 520px;
}

.feature-tab-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.feature-tab-image img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 380px;
  object-fit: cover;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .feature-tab-panel {
    grid-template-columns: 1fr;
  }
  .feature-tab-image { order: -1; }
  .feature-tab-image img { max-height: 260px; }
  .feature-tab-text p { max-width: 100%; }
}

@media (max-width: 620px) {
  .feature-tabs-nav {
    justify-content: flex-start;
    gap: 24px;
  }
  .feature-tab-btn { font-size: 15px; }
}

/* ══════════════════ CRO / conversion components (shared) ══════════════════ */

/* Promo banner */
.promo-banner {
  background: #fff7ed; border: 1px solid #fdba74; color: #9a3412;
  padding: 10px 16px; border-radius: 10px; font-size: 14px; margin: 12px 0 18px;
}
.promo-banner-lg { font-size: 15px; padding: 14px 18px; text-align: center; }
.promo-banner-inline { margin-top: 10px; display: inline-block; }

/* Trust row next to CTAs */
.cta-trust-row {
  display: flex; flex-wrap: wrap; gap: 14px; margin-top: 10px;
  font-size: 13px; color: var(--muted); font-weight: 600;
}
.cta-trust-row.small { font-size: 12px; gap: 10px; margin-top: 8px; }
.cta-trust-row span { display: inline-flex; align-items: center; gap: 4px; white-space: nowrap; }

/* Billing (monthly/yearly) toggle */
.billing-toggle {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin: 8px 0 28px;
}
.billing-toggle-label { font-weight: 600; color: var(--muted); font-size: 15px; }
.billing-toggle-label.active { color: var(--blue); }
.billing-toggle-label em { color: var(--orange); font-style: normal; font-weight: 700; margin-left: 6px; }
.billing-switch {
  width: 52px; height: 28px; border-radius: 20px; border: none; cursor: pointer;
  background: var(--line); position: relative; padding: 0; transition: background .2s;
}
.billing-switch.is-yearly { background: var(--orange); }
.billing-switch-knob {
  position: absolute; top: 3px; left: 3px; width: 22px; height: 22px; border-radius: 50%;
  background: #fff; box-shadow: 0 2px 6px rgba(0,0,0,.2); transition: transform .2s;
}
.billing-switch.is-yearly .billing-switch-knob { transform: translateX(24px); }

/* Pricing cards: entry-tier highlight + savings badge */
.plan-cards .plan { position: relative; border: 1px solid var(--line); border-radius: 14px; }
.plan-entry { border: 2px solid var(--orange) !important; box-shadow: 0 10px 30px rgba(249,115,22,.15); }
.plan-badge {
  position: absolute; top: -12px; left: 18px; background: var(--orange); color: #fff;
  font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 20px; letter-spacing: .3px;
}
.price-sub { font-size: 13px; color: var(--muted); }
.save-badge { background: #dcfce7; color: #166534; padding: 2px 8px; border-radius: 12px; font-weight: 700; }
.order-plan-summary { font-size: 15px; }
.order-plan-summary .muted { color: var(--muted); font-weight: 400; }

/* ══════════════════ Footer trust-badge marquee (right → left, infinite) ══════════════════ */
.trust-marquee-wrap {
  width: 100%;
  overflow: hidden;
  background: rgba(255,255,255,.05);
  border-top: 1px solid rgba(255,255,255,.14);
  border-bottom: 1px solid rgba(255,255,255,.14);
  padding: 22px 0;
  margin-top: 6px;
  position: relative;
}
/* soft fade at both edges so logos don't hard-cut against the marquee bounds */
.trust-marquee-wrap::before,
.trust-marquee-wrap::after {
  content: "";
  position: absolute; top: 0; bottom: 0; width: 60px; z-index: 2; pointer-events: none;
}
.trust-marquee-wrap::before { left: 0;  background: linear-gradient(90deg, var(--blue) 0%, transparent 100%); }
.trust-marquee-wrap::after  { right: 0; background: linear-gradient(270deg, var(--blue) 0%, transparent 100%); }

.trust-marquee-track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  animation: trust-marquee-scroll 30s linear infinite;
  will-change: transform;
}
.trust-marquee-wrap:hover .trust-marquee-track { animation-play-state: paused; }

/* Every badge gets the SAME footprint regardless of the source image's aspect ratio —
   this is what makes the row look like a clean press/trust bar instead of a jumble. */
.trust-badge-item {
  flex: 0 0 auto;
  width: 168px; height: 68px;
  display: flex; align-items: center; justify-content: center;
  background: #fff; border-radius: 10px; padding: 10px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,.12);
  transition: transform .2s ease;
}
.trust-badge-item:hover { transform: translateY(-2px); }
.trust-badge-item img {
  max-height: 100%; max-width: 100%; width: auto; height: auto;
  display: block; object-fit: contain;
}

@keyframes trust-marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
/* Respect reduced-motion by slowing way down rather than freezing solid —
   a fully frozen marquee looks like a rendering bug, not a design choice. */
@media (prefers-reduced-motion: reduce) {
  .trust-marquee-track { animation-duration: 120s; }
}
@media (max-width: 640px) {
  .trust-badge-item { width: 128px; height: 54px; padding: 8px 12px; }
  .trust-marquee-track { gap: 18px; }
  .trust-marquee-wrap::before, .trust-marquee-wrap::after { width: 34px; }
}

/* ══════════════════ Homepage promo popup ══════════════════ */
.promo-popup-backdrop {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(11,46,89,.72);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; visibility: hidden;
  transition: opacity .25s ease;
}
.promo-popup-backdrop.is-visible { opacity: 1; visibility: visible; }
.promo-popup {
  position: relative;
  max-width: min(440px, 100%);
  width: 100%;
  transform: scale(.92);
  transition: transform .25s ease;
}
.promo-popup-backdrop.is-visible .promo-popup { transform: scale(1); }
.promo-popup img {
  width: 100%; height: auto; display: block;
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0,0,0,.4);
}
.promo-popup-close {
  position: absolute; top: -14px; right: -14px;
  width: 34px; height: 34px; border-radius: 50%;
  background: #fff; color: var(--blue); border: none;
  font-size: 22px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.3);
}
@media (max-width: 480px) {
  .promo-popup-close { top: -12px; right: 0; }
}

/* ══════════════════ SSL: brand filter strip (on /ssl) ══════════════════ */
.ssl-brand-strip {
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
  padding: 14px; background: #fff; border: 1px solid var(--line); border-radius: 12px;
  margin-bottom: 8px;
}
.ssl-brand-chip {
  display: flex; align-items: center; justify-content: center;
  padding: 8px 16px; border-radius: 8px; border: 1px solid var(--line);
  background: #fafafa; transition: border-color .15s, background .15s;
}
.ssl-brand-chip:hover { border-color: var(--orange); background: #fff7ed; }
.ssl-brand-chip.active { border-color: var(--orange); background: #fff7ed; box-shadow: 0 0 0 2px rgba(249,115,22,.15); }
.ssl-brand-chip img { height: 20px; width: auto; display: block; }

/* ══════════════════ SSL: header nav dropdown ══════════════════ */
.nav-dropdown { position: relative; display: inline-block; }
.nav-dropdown > a { display: inline-flex; align-items: center; gap: 4px; }
.nav-dropdown > a::after { content: "▾"; font-size: 10px; opacity: .7; }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 0; margin-top: 8px;
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,.15);
  min-width: 220px; padding: 8px; z-index: 40;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 10px; border-radius: 6px; color: var(--ink); font-size: 14px; font-weight: 500;
}
.nav-dropdown-menu a:hover { background: #f8fafc; }
.nav-dropdown-menu a img { height: 18px; width: auto; }
.nav-dropdown-menu .nav-dropdown-all {
  border-bottom: 1px solid var(--line); margin-bottom: 6px; padding-bottom: 10px;
  font-weight: 700; color: var(--orange);
}

/* ══════════════════ SSL: homepage brand showcase ══════════════════ */
.ssl-showcase { background: #fff; padding: 50px 0; border-bottom: 1px solid var(--line); }
.ssl-showcase-inner { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.ssl-showcase-head { text-align: center; max-width: 640px; margin: 0 auto 30px; }
.ssl-showcase-head h2 { font-size: 26px; color: var(--ink); margin: 0 0 8px; }
.ssl-showcase-head p { color: var(--muted); font-size: 15px; margin: 0; }
.ssl-showcase-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px;
}
.ssl-brand-card {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 22px; text-align: center; display: flex; flex-direction: column; gap: 10px;
  transition: box-shadow .2s, transform .2s;
}
.ssl-brand-card:hover { box-shadow: 0 12px 30px rgba(11,46,89,.1); transform: translateY(-2px); }
.ssl-brand-card img.brand-logo { height: 30px; width: auto; margin: 0 auto 6px; }
.ssl-brand-card h3 { font-size: 15px; color: var(--ink); margin: 0; }
.ssl-brand-card .ssl-badge-row {
  display: flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--muted);
  justify-content: center; text-align: left;
}
.ssl-brand-card .ssl-price { font-size: 24px; font-weight: 800; color: var(--ink); margin: 4px 0 2px; }
.ssl-brand-card .ssl-price small { font-size: 13px; font-weight: 500; color: var(--muted); }
.ssl-brand-card .button { background: #15803d; }
.ssl-showcase-more { text-align: center; margin-top: 24px; }

@media (max-width: 900px) {
  .ssl-showcase-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 560px) {
  .ssl-showcase-grid { grid-template-columns: 1fr; }
}

/* ══════════════════ SSL: provider select dropdown (customer-facing) ══════════════════ */
.ssl-brand-dropdown-wrap {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 16px; margin-bottom: 14px;
}
.ssl-brand-dropdown-wrap label { color: var(--ink); font-size: 14px; }
.ssl-brand-dropdown-wrap select {
  flex: 1; min-width: 220px; padding: 10px 12px; border: 1px solid var(--line);
  border-radius: 8px; font-size: 14px; color: var(--ink); background: #fff;
}
