/* Extracted from softaculous.php style block 1 */
/* ============================================================
   SOFTACULOUS PAGE — v3.0
   SaaS / App-Marketplace / Deployment-Platform Edition
   Theme: Obsidian Navy + Electric Blue + Orange Deploy + Green Secure
============================================================ */

/* -------------------------------------------------------
   CSS CUSTOM PROPERTIES
------------------------------------------------------- */
body .s3 { /* scope prefix for v3 */
  --s-blue:      #176ea5;
  --s-orange:    #ff6b00;
  --s-green:     #00a388;
  --s-navy:      #0b1623;
  --s-navy2:     #111827;
  --s-card-bg:   #fff;
  --s-grey-bg:   #f4f6f9;
  --s-border:    rgba(0,0,0,0.08);
  --s-text:      #1a2234;
  --s-muted:     #6b7280;
  --s-radius:    12px;
}

/* -------------------------------------------------------
   HERO — App Deployment Platform
------------------------------------------------------- */
body .s3-hero {
  background: linear-gradient(160deg, #060e1a 0%, #0b1623 45%, #0d1f35 100%);
  padding: 0;
  position: relative;
  overflow: hidden;
}

/* Ambient grid pattern */
body .s3-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(23,110,165,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23,110,165,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

/* Glow orbs */
body .s3-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 55% at 15% 60%, rgba(23,110,165,0.22) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 85% 25%, rgba(255,107,0,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 30% 40% at 60% 90%, rgba(0,163,136,0.1) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

body .s3-hero-inner {
  position: relative;
  z-index: 2;
  padding: 70px 0 0;
}

body .s3-hero-text-col {
  padding: 20px 0 50px;
}

/* Eyebrow badge */
body .s3-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: 20px;
  background: rgba(23,110,165,0.15);
  border: 1px solid rgba(23,110,165,0.4);
  color: #60b4e8;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
body .s3-eyebrow i { font-size: 11px; }

body .s3-hero h1 {
  font-size: clamp(30px, 4.5vw, 54px);
  font-weight: 900;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
body .s3-hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, #ff6b00, #ffaa55);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
body .s3-hero h1 span {
  background: linear-gradient(90deg, #60b4e8, #176ea5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

body .s3-hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 520px;
}

/* Hero CTA row */
body .s3-hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
body .s3-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  background: linear-gradient(135deg, #ff6b00, #e85c00);
  color: #fff;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 6px 24px rgba(255,107,0,0.3);
  letter-spacing: 0.2px;
}
body .s3-btn-primary:hover {
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(255,107,0,0.4);
}
body .s3-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: all 0.25s ease;
}
body .s3-btn-ghost:hover {
  background: rgba(255,255,255,0.13);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}

/* Feature pills */
body .s3-hero-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
body .s3-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 13px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid;
}
body .s3-pill--blue   { background: rgba(23,110,165,0.12);  border-color: rgba(23,110,165,0.35);  color: #60b4e8; }
body .s3-pill--orange { background: rgba(255,107,0,0.1);    border-color: rgba(255,107,0,0.35);    color: #ffaa55; }
body .s3-pill--green  { background: rgba(0,163,136,0.1);    border-color: rgba(0,163,136,0.35);    color: #34d399; }
body .s3-pill--purple { background: rgba(124,58,237,0.1);   border-color: rgba(124,58,237,0.35);   color: #a78bfa; }

/* -------------------------------------------------------
   HERO — Mock Dashboard Panel
------------------------------------------------------- */
body .s3-hero-panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06);
  margin-bottom: -1px;
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
  transition: transform 0.4s ease;
}
body .s3-hero-panel:hover {
  transform: perspective(1200px) rotateY(-1deg) rotateX(1deg);
}

/* Panel chrome bar */
body .s3-panel-chrome {
  background: rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
body .s3-chrome-dots {
  display: flex;
  gap: 5px;
}
body .s3-chrome-dots span {
  width: 9px; height: 9px;
  border-radius: 50%;
}
body .s3-chrome-dots span:nth-child(1) { background: #FF5F57; }
body .s3-chrome-dots span:nth-child(2) { background: #FFBD2E; }
body .s3-chrome-dots span:nth-child(3) { background: #28CA41; }
body .s3-chrome-title {
  flex: 1;
  text-align: center;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
}

/* Panel body */
body .s3-panel-body {
  padding: 16px;
}

/* Panel search bar */
body .s3-panel-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 9px 14px;
  margin-bottom: 14px;
}
body .s3-panel-search i { color: rgba(255,255,255,0.3); font-size: 13px; }
body .s3-panel-search span {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}
body .s3-panel-search .s3-search-tag {
  margin-left: auto;
  font-size: 10px;
  color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  padding: 2px 7px;
}

/* Panel category tabs */
body .s3-panel-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
  overflow: hidden;
}
body .s3-panel-tab {
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  background: transparent;
  cursor: default;
  white-space: nowrap;
}
body .s3-panel-tab--active {
  background: rgba(23,110,165,0.25);
  border: 1px solid rgba(23,110,165,0.4);
  color: #60b4e8;
}

/* App grid inside panel */
body .s3-panel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
body .s3-panel-app {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 10px 8px;
  text-align: center;
  transition: all 0.2s ease;
  cursor: default;
}
body .s3-panel-app:hover {
  background: rgba(23,110,165,0.18);
  border-color: rgba(23,110,165,0.4);
}
body .s3-panel-app i {
  font-size: 18px;
  margin-bottom: 5px;
  display: block;
}
body .s3-panel-app span {
  font-size: 9.5px;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  display: block;
  line-height: 1.3;
}
body .s3-panel-app--featured {
  background: rgba(255,107,0,0.12);
  border-color: rgba(255,107,0,0.3);
}
body .s3-panel-app--featured i { color: #ffaa55; }
body .s3-panel-app--featured span { color: rgba(255,255,255,0.75); }

/* Install button mock inside panel */
body .s3-panel-install-row {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
body .s3-panel-install-btn {
  flex: 1;
  background: linear-gradient(135deg, #176ea5, #125986);
  color: #fff;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  padding: 9px 14px;
  text-align: center;
  letter-spacing: 0.5px;
  cursor: default;
}
body .s3-panel-count {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
}

/* Panel stat bar */
body .s3-panel-stats {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
body .s3-panel-stat {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 7px;
  padding: 8px 10px;
  text-align: center;
}
body .s3-panel-stat strong {
  display: block;
  font-size: 16px;
  font-weight: 900;
  color: #ff6b00;
  line-height: 1;
}
body .s3-panel-stat span {
  font-size: 9px;
  color: rgba(255,255,255,0.35);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 3px;
  display: block;
}

/* -------------------------------------------------------
   SECTION SHARED STYLES
------------------------------------------------------- */
body .s3-section-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 14px;
  border-radius: 20px;
  background: rgba(23,110,165,0.1);
  border: 1px solid rgba(23,110,165,0.25);
  color: #176ea5;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
body .s3-section-title {
  font-size: clamp(24px, 3.8vw, 40px);
  font-weight: 800;
  color: #1a2234;
  line-height: 1.18;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}
body .s3-section-sub {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 0;
}

/* -------------------------------------------------------
   FEATURE CARDS SECTION
------------------------------------------------------- */
body .s3-features-section {
  background: #f4f6f9;
  padding: 72px 0;
}

body .s3-feature-card {
  background: #fff;
  border-radius: 14px;
  padding: 32px 26px;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
body .s3-feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
body .s3-feature-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 48px rgba(0,0,0,0.1);
}
body .s3-feature-card:hover::before { opacity: 1; }

body .s3-feature-card:nth-child(1)::before { background: linear-gradient(90deg,#ff6b00,#ffaa55); }
body .s3-feature-card:nth-child(2)::before { background: linear-gradient(90deg,#176ea5,#60b4e8); }
body .s3-feature-card:nth-child(3)::before { background: linear-gradient(90deg,#00a388,#34d399); }
body .s3-feature-card:nth-child(4)::before { background: linear-gradient(90deg,#7C3AED,#a78bfa); }

body .s3-feature-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}
body .s3-feature-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}
body .s3-feature-title {
  font-size: 18px;
  font-weight: 800;
  color: #1a2234;
  margin-bottom: 10px;
  line-height: 1.25;
}
body .s3-feature-desc {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.65;
  margin: 0;
}

/* -------------------------------------------------------
   ABOUT SECTION
------------------------------------------------------- */
body .s3-about-section {
  background: #fff;
  padding: 80px 0;
}
body .s3-check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}
body .s3-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 15px;
  color: #374151;
  margin-bottom: 11px;
  line-height: 1.55;
}
body .s3-check-icon {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(0,163,136,0.12);
  border: 1.5px solid rgba(0,163,136,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
body .s3-check-icon i { font-size: 9px; color: #00a388; }

/* Stats panel */
body .s3-stats-panel {
  background: linear-gradient(145deg, #0b1623, #111827);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
body .s3-stats-panel-top {
  padding: 30px 28px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
body .s3-stats-panel-top img { max-width: 200px; filter: brightness(0) invert(1); opacity: 0.9; }
body .s3-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
body .s3-stat-box {
  padding: 22px 16px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
}
body .s3-stat-box:last-child { border-right: none; }
body .s3-stat-box strong {
  display: block;
  font-size: 26px;
  font-weight: 900;
  color: #ff6b00;
  line-height: 1;
  margin-bottom: 5px;
}
body .s3-stat-box span {
  font-size: 10.5px;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
body .s3-stats-panel-bottom {
  padding: 20px 24px;
  background: rgba(23,110,165,0.08);
  border-top: 1px solid rgba(23,110,165,0.15);
}
body .s3-trustline {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
body .s3-trustline i { color: #00a388; }

/* -------------------------------------------------------
   APP CATEGORIES
------------------------------------------------------- */
body .s3-apps-section {
  background: #f4f6f9;
  padding: 80px 0;
}

body .s3-app-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  overflow: hidden;
  margin-bottom: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
body .s3-app-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 44px rgba(0,0,0,0.1);
}

/* Colored top strip */
body .s3-app-card-strip {
  height: 4px;
}

body .s3-app-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 14px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
body .s3-app-card-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
body .s3-app-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: #fff;
  flex-shrink: 0;
}
body .s3-app-card-title {
  font-size: 15px;
  font-weight: 800;
  color: #1a2234;
  margin: 0;
}
body .s3-app-count {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

body .s3-app-list {
  list-style: none;
  padding: 12px 20px;
  margin: 0;
}
body .s3-app-list li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  font-size: 13px;
  line-height: 1.45;
}
body .s3-app-list li:last-child { border-bottom: none; }
body .s3-app-list li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}
body .s3-app-name { font-weight: 700; color: #1a2234; }
body .s3-app-desc { color: #9ca3af; }

/* -------------------------------------------------------
   PLANS CTA SECTION
------------------------------------------------------- */
body .s3-plans-section {
  background: linear-gradient(165deg, #060e1a 0%, #0b1623 50%, #0f2035 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
body .s3-plans-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(23,110,165,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23,110,165,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
body .s3-plans-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 10% 50%, rgba(23,110,165,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 90% 50%, rgba(255,107,0,0.1) 0%, transparent 65%);
  pointer-events: none;
}
body .s3-plans-section .container { position: relative; z-index: 2; }

body .s3-plan-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  padding: 30px 24px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
body .s3-plan-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.16);
}
body .s3-plan-card--free {
  border-color: rgba(0,163,136,0.3);
}
body .s3-plan-card--free:hover {
  border-color: rgba(0,163,136,0.5);
}
body .s3-plan-icon-wrap {
  width: 58px; height: 58px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 18px;
}
body .s3-plan-card-title {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
body .s3-plan-avail-free {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  color: #34d399;
  background: rgba(0,163,136,0.1);
  border: 1px solid rgba(0,163,136,0.25);
  border-radius: 20px;
  padding: 3px 12px;
  margin-bottom: 14px;
}
body .s3-plan-avail-addon {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  color: #ffaa55;
  background: rgba(255,107,0,0.1);
  border: 1px solid rgba(255,107,0,0.25);
  border-radius: 20px;
  padding: 3px 12px;
  margin-bottom: 14px;
}
body .s3-plan-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-bottom: 20px;
}
body .s3-plan-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: all 0.25s ease;
}
body .s3-plan-card-btn:hover { text-decoration: none; transform: translateY(-1px); }
body .s3-plan-card-btn--free {
  background: rgba(0,163,136,0.2);
  border: 1px solid rgba(0,163,136,0.4);
  color: #34d399;
}
body .s3-plan-card-btn--free:hover {
  background: rgba(0,163,136,0.35);
  color: #fff;
}
body .s3-plan-card-btn--addon {
  background: rgba(23,110,165,0.2);
  border: 1px solid rgba(23,110,165,0.4);
  color: #60b4e8;
}
body .s3-plan-card-btn--addon:hover {
  background: rgba(23,110,165,0.35);
  color: #fff;
}

/* -------------------------------------------------------
   SUPPORT BANNER
------------------------------------------------------- */
body .s3-support-section {
  background-image: url("https://cdn.underhost.com/images/supportbg.jpg");
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  position: relative;
}
body .s3-support-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(6,14,26,0.85) 0%, rgba(11,22,35,0.78) 55%, rgba(23,110,165,0.35) 100%);
}
body .s3-support-section .container { position: relative; z-index: 2; }
body .s3-support-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
body .s3-support-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 15px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 12px;
  line-height: 1.5;
}
body .s3-support-list li i { color: #00a388; font-size: 14px; margin-top: 2px; }

/* -------------------------------------------------------
   FAQ
------------------------------------------------------- */
body .s3-faq-section {
  background: #f4f6f9;
  padding: 80px 0;
}
body .s3-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
body .s3-faq-item {
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.07);
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
body .s3-faq-item:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.08); }
body .s3-faq-q {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 20px 22px;
  font-size: 14px;
  font-weight: 700;
  color: #1a2234;
  line-height: 1.45;
  cursor: default;
}
body .s3-faq-q-num {
  font-size: 12px;
  font-weight: 900;
  color: #176ea5;
  background: rgba(23,110,165,0.1);
  border-radius: 6px;
  padding: 2px 8px;
  flex-shrink: 0;
  margin-top: 1px;
}
body .s3-faq-a {
  padding: 0 22px 18px;
  font-size: 13px;
  color: #6b7280;
  line-height: 1.7;
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 12px;
}

/* -------------------------------------------------------
   ANIMATE ON SCROLL
------------------------------------------------------- */
body .animate-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
body .animate-on-scroll.visible {
  opacity: 1;
  transform: none;
}

/* -------------------------------------------------------
   RESPONSIVE
------------------------------------------------------- */
@media (max-width: 991px) {
  body .s3-hero-panel { transform: none; margin-top: 40px; }
  body .s3-faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  body .s3-panel-grid { grid-template-columns: repeat(3, 1fr); }
  body .s3-hero-cta { flex-direction: column; align-items: flex-start; }
  body .s3-stats-grid { grid-template-columns: repeat(3, 1fr); }
  body .s3-plan-card { margin-bottom: 16px; }
  body .s3-feature-card { margin-bottom: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  body .animate-on-scroll { opacity: 1; transform: none; transition: none; }
  body .s3-hero-panel { transform: none; }
}

