/*==============================================================================
STATSCALAR ENTERPRISE - HOMEPAGE (INDEX) STYLES
Version: 2.0
Page: Homepage
Framework: Laravel Blade + Bootstrap
Author: Balagali
Description: Comprehensive styling for the enterprise homepage covering hero,
discovery, features, industries, datasets, testimonials, pricing and demo CTA.
==============================================================================*/

/*==============================================================================
01. HERO SECTION - Main Landing Hero
==============================================================================*/
.ss-hero {
  position: relative;
  overflow: hidden;
  padding: 35px 0 5px;
  background:
    radial-gradient(circle at right top,
      rgba(0, 168, 107, 0.10),
      transparent 42%),
    linear-gradient(180deg, #ffffff 0%, #fbfdfc 100%);
}

.ss-hero::before {
  content: "";
  position: absolute;
  right: -180px;
  top: -120px;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  background:
    radial-gradient(circle,
      rgba(0, 168, 107, 0.08),
      transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.ss-hero > .container {
  position: relative;
  z-index: 2;
}

.ss-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(0, 0.84fr);
  gap: 50px;
  align-items: start;
}

.ss-hero-content {
  max-width: 100%;
  padding-right: 30px;
}

.ss-hero h1 {
  margin: 20px 0;
  font-size: 48px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--ss-heading);
}

.ss-hero-statement {
  margin: 14px 0 0;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.35;
  color: var(--ss-primary);
}

.ss-hero-copy {
  max-width: 650px;
  margin: 20px 0 25px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--ss-muted);
}

/*==============================================================================
02. HERO SEARCH - Search Form & Box
==============================================================================*/
.ss-search-form {
  max-width: 920px;
  margin: 25px 0;
}

.ss-search-box {
  width: 100%;
  height: 58px;
  border-radius: 18px;
  border: 1px solid var(--ss-border);
  background: #fff;
  display: flex;
  align-items: center;
  padding: 8px;
  box-shadow: var(--ss-shadow-md);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.ss-search-box:focus-within {
  border-color: var(--ss-primary);
  box-shadow: 0 0 0 4px rgba(0, 168, 107, 0.12);
}

.ss-search-box i {
  width: 55px;
  text-align: center;
  font-size: 24px;
  color: #7b8794;
}

.ss-search-box input {
  flex: 1;
  border: none;
  background: none;
  font-size: 15px;
  color: #111827;
}

.ss-search-box input::placeholder {
  color: #94A3B8;
}

.ss-search-box input:focus {
  outline: none;
}

.ss-search-box button {
  width: 100px;
  height: 35px;
  border-radius: 18px;
  font-size: 16px;
  /* Kill the generic .ss-btn-primary drop shadow here -- inside this 58px
     pill there's only ~11px of clearance around the button, not enough
     room for that shadow's 30px blur, so it was bleeding against the
     pill's edges instead of rendering cleanly. */
  box-shadow: none;
}

.ss-hero-actions {
  display: flex;
  gap: 18px;
  margin: 25px 0 35px;
}

/*==============================================================================
03. HERO TRUST STRIP - Statistics
==============================================================================*/
.ss-hero-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #fff;
  border-radius: 22px;
  margin-top: 25px;
  overflow: hidden;
  border: 1px solid #EEF2F7;
  box-shadow: 0 10px 35px rgba(15, 23, 42, 0.05);
}

.ss-hero-trust div {
  padding: 18px 14px;
  text-align: center;
  border-right: 1px solid #EEF2F7;
}

.ss-hero-trust div:last-child {
  border-right: none;
}

.ss-hero-trust strong {
  display: block;
  color: var(--ss-primary);
  font-size: 42px;
  font-weight: 800;
}

.ss-hero-trust span {
  color: var(--ss-muted);
  font-size: 15px;
}

/*==============================================================================
04. PLATFORM METRICS - Wrapper for Trust Strip
==============================================================================*/
.ss-platform-metrics {
  padding: 8px 0 28px;
}

.ss-platform-stats {
  background: #F5FCF8;
}

/*==============================================================================
05. POPULAR SEARCHES - Marquee Ticker
==============================================================================*/
.ss-popular-searches {
  margin-top: 20px;
}

.ss-popular-title {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 600;
  color: #64748B;
}

.ss-search-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.ss-search-track {
  display: flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  animation: ssMarquee 70s linear infinite;
}

.ss-search-track:hover {
  animation-play-state: paused;
}

.ss-search-track a {
  flex: 0 0 auto;
  padding: 10px 18px;
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  color: #475569;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background-color 0.25s,
    border-color 0.25s,
    color 0.25s;
}

.ss-search-track a:hover {
  background: var(--ss-primary);
  border-color: var(--ss-primary);
  color: #fff;
}

@keyframes ssMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/*==============================================================================
06. HERO INTELLIGENCE PANEL - Right Side Card
==============================================================================*/
.hero-intelligence-card {
  position: sticky;
  top: 100px;
}

.hero-feature-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.hero-feature-list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--ss-border);
  font-size: 16px;
  font-weight: 500;
  color: var(--ss-text);
  line-height: 1.5;
}

.hero-feature-list li::before {
  content: "✓";
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ECFDF5;
  color: var(--ss-primary);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-feature-list li:last-child {
  border-bottom: none;
}

/*==============================================================================
07. ENTERPRISE CARD FOUNDATION - Shared Card Base
==============================================================================*/
.ss-category-card,
.ss-feature-card,
.ss-industry-card,
.ss-stat-card,
.ss-dataset-card,
.ss-client-card,
.ss-testimonial-card,
.ss-pricing-card,
.ss-demo-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--ss-border);
  border-radius: var(--ss-radius-lg);
  box-shadow: var(--ss-shadow-sm);
  transition:
    transform var(--ss-transition),
    box-shadow var(--ss-transition),
    border-color var(--ss-transition);
}

/*==============================================================================
08. SECTION HEADING - Shared Section Titles
==============================================================================*/
.ss-section-heading {
  max-width: 760px;
  margin: 0 auto 30px;
}

.ss-section-heading span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: 50px;
  background: var(--ss-primary-light);
  color: var(--ss-primary);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 20px;
}

.ss-section-heading h2 {
  margin-bottom: 18px;
  font-size: 38px;
}

.ss-section-heading p {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--ss-muted);
  line-height: 1.8;
}

.ss-bg-light {
  background: var(--ss-bg);
}

/* Page-scoped section (replaces the shared ss-bg-light utility on this section
   so its padding can be tuned without touching ss-bg-light globally). */
.ss-why-section {
  background: var(--ss-bg);
  padding: 64px 0;
}

/*==============================================================================
09. DISCOVERY & CATEGORIES SECTION
==============================================================================*/
.ss-discovery {
  background: #fff;
  position: relative;
  padding: 64px 0 60px;
}

.ss-discovery .container {
  position: relative;
  z-index: 2;
}

/* Category Card */
.ss-category-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--ss-border);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.35s ease;
  text-decoration: none;
}

.ss-category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--ss-primary), #39d98a);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.ss-category-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 168, 107, 0.25);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.10);
}

.ss-category-card:hover::before {
  transform: scaleX(1);
}

.ss-category-icon {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--ss-primary-light);
  margin: 0 auto 16px;
  transition: all 0.35s ease;
}

.ss-category-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.ss-category-icon i {
  font-size: 26px;
  line-height: 1;
  color: var(--ss-primary);
}

.ss-category-card:hover .ss-category-icon {
  transform: scale(1.08);
  background: #f2fff8;
}

.ss-category-content {
  flex: 1;
  text-align: center;
}

.ss-category-content h3 {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ss-heading);
  margin-bottom: 8px;
}

.ss-category-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--ss-muted);
}

.ss-category-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ss-primary);
  transition: all 0.35s ease;
}

.ss-category-arrow i {
  transition: all 0.35s ease;
}

.ss-category-card:hover .ss-category-arrow {
  gap: 16px;
}

.ss-category-card:hover .ss-category-arrow i {
  transform: translateX(6px);
}

/*==============================================================================
10. WHY CHOOSE STATSCALAR - Feature Cards
==============================================================================*/
.ss-feature-card {
  position: relative;
  height: 100%;
  padding: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.ss-feature-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--ss-primary), #43d48d);
  transform: scaleY(0);
  transform-origin: top;
  transition: var(--ss-transition);
}

.ss-feature-card:hover::before {
  transform: scaleY(1);
}

.ss-feature-icon {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ss-primary-light);
  border-radius: 16px;
  margin: 0 auto 16px;
  transition: var(--ss-transition);
}

.ss-feature-card:hover .ss-feature-icon {
  transform: rotate(-4deg) scale(1.06);
}

.ss-feature-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
}

.ss-feature-card h3 {
  font-size: 19px;
  line-height: 1.3;
  margin-bottom: 8px;
  color: var(--ss-heading);
  text-align: center;
}

.ss-feature-card p {
  margin: 0;
  color: var(--ss-muted);
  line-height: 1.65;
  font-size: 14px;
  text-align: center;
}

/*==============================================================================
11. INDUSTRIES SECTION - Industry Cards
==============================================================================*/
.ss-industries-section {
  background: var(--ss-bg);
  padding: 60px 0;
}

.ss-industry-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 12px;
  min-height: 170px;
  padding: 26px 20px;
  text-decoration: none;
}

.ss-industry-card:hover {
  transform: translateY(-8px);
}

/* .ss-home prefix: industry-glance-blade.css also defines .ss-industry-icon
   and loads after this file, so a bare selector here would be overridden
   site-wide. Scoping to .ss-home keeps this homepage-only. */
.ss-home .ss-industry-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #edf9f4;
  transition: var(--ss-transition);
}

.ss-home .ss-industry-icon i {
  font-size: 26px;
  color: var(--ss-primary);
}

.ss-industry-card:hover .ss-industry-icon {
  transform: scale(1.08);
}

.ss-industry-card h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ss-heading);
}

.ss-industry-card p {
  flex: 1;
  margin: 0;
  color: var(--ss-muted);
  font-size: 15px;
  line-height: 1.85;
}

.ss-industry-card span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: var(--ss-primary);
  font-weight: 700;
}

.ss-industry-card span i {
  transition: var(--ss-transition);
}

.ss-industry-card:hover span {
  gap: 16px;
}

.ss-industry-card:hover span i {
  transform: translateX(5px);
}

/*==============================================================================
12. PLATFORM STATISTICS - Stat Cards
==============================================================================*/
.ss-stat-card {
  height: 100%;
  padding: 42px;
  text-align: center;
}

.ss-stat-card:hover {
  transform: translateY(-8px);
}

.ss-stat-number {
  margin-bottom: 22px;
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  color: var(--ss-primary);
  letter-spacing: -2px;
}

.ss-stat-card h3 {
  margin-bottom: 18px;
  font-size: 22px;
  line-height: 1.35;
  color: var(--ss-heading);
}

.ss-stat-card p {
  margin: 0;
  color: var(--ss-muted);
  font-size: 15px;
  line-height: 1.8;
}

/*==============================================================================
13. FEATURED DATASETS - Dataset Cards
==============================================================================*/
.ss-featured-section {
  background: #fff;
  position: relative;
}

.ss-dataset-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 38px;
}

.ss-dataset-card:hover {
  transform: translateY(-8px);
}

.ss-dataset-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 26px;
  gap: 15px;
}

.ss-update {
  font-size: 13px;
  font-weight: 600;
  color: var(--ss-muted);
  white-space: nowrap;
}

.ss-dataset-card h3 {
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--ss-heading);
}

.ss-dataset-card p {
  flex: 1;
  margin: 0;
  color: var(--ss-muted);
  font-size: 15px;
  line-height: 1.85;
}

.ss-dataset-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--ss-border);
}

.ss-dataset-footer span {
  display: block;
  font-size: 13px;
  color: var(--ss-muted);
}

.ss-dataset-footer strong {
  display: block;
  margin-top: 6px;
  font-size: 15px;
  color: var(--ss-heading);
}

.ss-dataset-footer .ss-btn {
  min-height: 48px;
  padding: 0 22px;
}

/*==============================================================================
14. LATEST MARKET INTELLIGENCE - Tab Navigation with Releases
==============================================================================*/
.ss-latest-section {
  position: relative;
  background: linear-gradient(180deg, #F7FCF9 0%, #FFFFFF 100%);
  border-top: 1px solid #E8F3EE;
  overflow: hidden;
  padding: 60px 0 64px;
}

.ss-latest-wrapper {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 22px;
  margin-top: 1px;
  align-items: flex-start;
}

/* Left Navigation */
.ss-latest-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: sticky;
  top: 100px;
}

.ss-latest-nav button {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid var(--ss-border);
  border-radius: 14px;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--ss-heading);
  cursor: pointer;
  transition: 0.3s ease;
}

.ss-latest-nav button i {
  flex-shrink: 0;
  width: 20px;
  font-size: 16px;
  text-align: center;
  color: var(--ss-primary);
}

.ss-latest-nav button:hover {
  background: #F2FAF6;
  border-color: rgba(18, 161, 95, 0.25);
  color: var(--ss-primary);
}

.ss-latest-nav button.active {
  background: #ECF8F2;
  color: var(--ss-primary);
  border-color: rgba(18, 161, 95, 0.25);
  border-left: 4px solid var(--ss-primary);
}

/* Right Panel */
.ss-latest-content {
  background: #fff;
  border: 1px solid var(--ss-border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.ss-latest-panel {
  display: none;
}

.ss-latest-panel.active {
  display: block;
}

/* Release Item */
.ss-release-item {
  padding: 20px 32px;
  border-bottom: 1px solid var(--ss-border);
}

.ss-release-item:last-child {
  border-bottom: none;
}

.ss-release-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ss-release-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--ss-primary-light);
  color: var(--ss-primary);
  font-size: 15px;
}

.ss-release-header h3 {
  flex: 1;
  min-width: 0;
  margin: 0;
}

.ss-release-header h3 a {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--ss-heading);
  text-decoration: none;
  transition: 0.3s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ss-release-header h3 a:hover {
  color: var(--ss-primary);
}

.ss-release-id {
  flex: 0 0 150px;
  text-align: right;
  white-space: nowrap;
}

.ss-release-id span {
  display: inline;
  font-size: 13px;
  color: var(--ss-muted);
  margin-right: 6px;
}

.ss-release-id strong {
  display: inline;
  font-size: 17px;
  font-weight: 700;
  color: var(--ss-heading);
}

/* View All */
.ss-view-all {
  padding: 30px 36px;
  text-align: center;
  background: #FAFCFB;
  border-top: 1px solid var(--ss-border);
}

.ss-view-all:hover i {
  transform: translateX(4px);
}

.ss-view-all i {
  transition: var(--ss-transition);
}

/*==============================================================================
15. TRUSTED ORGANIZATIONS - Client Logos
==============================================================================*/
/* .ss-home prefix: legal-page-blade.css also defines .ss-trust-section and
   loads after this file, so a bare selector here would be overridden
   site-wide. Scoping to .ss-home keeps this homepage-only. */
.ss-home .ss-trust-section {
  background: #fff;
  padding: 56px 0;
}

.ss-client-card {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  padding: 18px;
}

.ss-client-card:hover {
  transform: translateY(-8px);
}

.ss-client-card img {
  max-width: 140px;
  max-height: 55px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.70;
  filter: grayscale(100%);
  transition: var(--ss-transition);
}

.ss-client-card:hover img {
  opacity: 1;
  filter: none;
  transform: scale(1.05);
}

.ss-trust-bottom {
  margin-top: 24px;
}

/* .ss-home prefix: subscribe-blade.css / faq-blade.css / details-blade.css
   also define .ss-trust-item and one of them loads after this file, so a
   bare selector here would be overridden site-wide. */
.ss-home .ss-trust-item {
  text-align: center;
  padding: 16px 24px;
}

.ss-home .ss-trust-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 700;
  color: var(--ss-heading);
}

.ss-home .ss-trust-item p {
  margin: 0;
  color: var(--ss-muted);
  line-height: 1.85;
}

/*==============================================================================
16. TESTIMONIALS - Client Success Stories
==============================================================================*/
.ss-testimonials-section {
  background: var(--ss-bg);
  padding: 60px 0;
}

.ss-testimonial-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 28px;
}

.ss-testimonial-card:hover {
  transform: translateY(-8px);
}

.ss-rating {
  margin-bottom: 14px;
  color: var(--ss-accent, #f59e0b);
  font-size: 20px;
  letter-spacing: 3px;
}

.ss-testimonial-text {
  flex: 1;
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ss-text);
  font-style: italic;
}

.ss-testimonial-user {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--ss-border);
}

.ss-avatar {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ss-primary-light);
  color: var(--ss-primary);
  font-size: 17px;
  font-weight: 700;
  flex-shrink: 0;
}

.ss-testimonial-user h4 {
  margin: 0 0 4px;
  font-size: 18px;
  color: var(--ss-heading);
}

.ss-testimonial-user span {
  font-size: 14px;
  color: var(--ss-muted);
}

/*==============================================================================
17. ENTERPRISE PRICING - Subscription Plans

NOTE: subscribe-blade.css defines an identically-named pricing component
(reused on the Subscribe page) and loads after this file in header.blade.php,
which loads every page's CSS on every route. Every selector below is scoped
under .ss-home so the homepage's spacing wins without editing subscribe-blade.css
or the Subscribe page.
==============================================================================*/
.ss-home .subscription-plans {
  padding: 60px 0;
  background: var(--ss-bg);
}

.ss-home .pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.ss-home .pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 26px;
  background: #fff;
  border: 1px solid rgba(0, 168, 107, 0.10);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(18, 38, 63, 0.06);
  transition: all 0.35s ease;
}

.ss-home .pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--ss-primary), #4fd39d);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.35s ease;
}

.ss-home .pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(18, 38, 63, 0.10);
}

.ss-home .pricing-card:hover::before {
  transform: scaleX(1);
}

.ss-home .pricing-card.featured {
  transform: translateY(-12px);
  border: 2px solid var(--ss-primary);
  box-shadow: 0 28px 60px rgba(0, 168, 107, 0.14);
  z-index: 2;
}

.ss-home .pricing-card.featured::before {
  transform: scaleX(1);
}

/* Plan Heading */
.ss-home .pricing-card h2 {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 6px;
  color: var(--ss-heading);
}

.ss-home .ss-plan-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  margin: 6px 0 14px;
  border-radius: 50px;
  background: rgba(0, 168, 107, 0.10);
  border: 1px solid rgba(0, 168, 107, 0.18);
  color: var(--ss-primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  transition: var(--ss-transition);
}

.ss-home .ss-plan-badge i {
  font-size: 12px;
  color: #f59e0b;
}

.ss-home .ss-plan-badge-light {
  background: #f8fafc;
  border-color: #e2e8f0;
  color: #64748b;
}

.ss-home .ss-plan-badge-light i {
  color: var(--ss-primary);
}

/* Description */
.ss-home .ss-plan-desc {
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ss-muted);
}

/* Price */
.ss-home .ss-price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 14px;
}

.ss-home .ss-price small {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--ss-primary);
  margin-bottom: 4px;
}

.ss-home .ss-price strong {
  font-size: 46px;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -2px;
  color: var(--ss-heading);
}

.ss-home .ss-price span {
  margin-top: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ss-muted);
}

/* Divider */
.ss-home .ss-plan-divider {
  margin: 0 0 14px;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* Features List */
.ss-home .pricing-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.ss-home .pricing-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  line-height: 1.5;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.ss-home .pricing-card ul li:last-child {
  border-bottom: none;
}

.ss-home .pricing-card ul li i {
  margin-top: 4px;
  min-width: 18px;
  font-size: 16px;
  color: var(--ss-primary);
}

.ss-home .pricing-card ul li.disabled {
  color: #98a2ad;
}

.ss-home .pricing-card ul li.disabled i {
  color: #b7bec8;
}

/* Buttons */
.ss-home .plan-btn {
  margin-top: 10px;
  width: 100%;
  min-height: 48px;
  justify-content: center;
  font-weight: 700;
  transition: all 0.3s ease;
}

.ss-home .pricing-card:hover .plan-btn {
  transform: translateY(-2px);
}

/*==============================================================================
18. ENTERPRISE DEMO CTA - Contact / Request Demo Form
==============================================================================*/
.ss-demo-section {
  background: #fff;
  padding: 60px 0;
}

.ss-demo-wrapper {
  background: linear-gradient(135deg, #ffffff, #f6fbf8);
  border: 1px solid var(--ss-border);
  border-radius: 28px;
  padding: 36px;
  box-shadow: var(--ss-shadow-lg);
}

.ss-demo-content h2 {
  margin: 16px 0;
  font-size: 32px;
  line-height: 1.15;
}

.ss-demo-content p {
  color: var(--ss-muted);
  line-height: 1.7;
  margin-bottom: 22px;
}

.ss-demo-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ss-demo-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--ss-heading);
}

.ss-demo-list i {
  color: var(--ss-primary);
}

.ss-demo-card {
  padding: 30px;
}

.ss-demo-card .form-control,
.ss-demo-card .ss-input {
  min-height: 56px;
  border-radius: 14px;
  margin-bottom: 7px;
  border: 1px solid var(--ss-border);
  padding: 0 16px;
  width: 100%;
  font-size: 15px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.ss-demo-card .form-control:focus,
.ss-demo-card .ss-input:focus {
  outline: none;
  border-color: var(--ss-primary);
  box-shadow: 0 0 0 4px rgba(0, 168, 107, 0.10);
}

.ss-demo-card textarea.form-control {
  min-height: 140px;
  resize: vertical;
  padding: 16px;
}

.ss-demo-card select.form-control {
  min-height: 56px;
}

.ss-demo-card .alert-success {
  padding: 16px 20px;
  margin-bottom: 20px;
  border-radius: 14px;
  background: var(--ss-primary-light);
  color: var(--ss-primary-dark, #008C5A);
  border: 1px solid rgba(0, 168, 107, 0.2);
  font-weight: 600;
}

/*==============================================================================
19. RESPONSIVE DESIGN - HERO
==============================================================================*/
@media (max-width: 1200px) {
  .ss-hero-grid {
    gap: 60px;
  }
  
  .ss-hero h1 {
    font-size: 44px;
  }
}

@media (max-width: 992px) {
  .ss-hero {
    padding: 70px 0 50px;
  }
  
  .ss-hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .ss-hero-content {
    max-width: 100%;
    text-align: center;
    padding-right: 0;
  }
  
  .ss-hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .ss-search-form {
    max-width: 760px;
    margin: 25px auto;
  }
  
  .ss-hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .ss-hero-trust {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-intelligence-card {
    position: relative;
    top: auto;
  }
}

@media (max-width: 768px) {
  .ss-hero h1 {
    font-size: 42px;
  }
  
  .ss-search-box {
    flex-wrap: wrap;
    height: auto;
    padding: 12px;
  }
  
  .ss-search-box i {
    display: none;
  }
  
  .ss-search-box input {
    width: 100%;
    height: 56px;
    padding: 0 15px;
  }
  
  .ss-search-box .ss-btn {
    width: 100%;
    margin-top: 12px;
  }
  
  .ss-hero-actions {
    flex-direction: column;
  }
  
  .ss-hero-actions .ss-btn {
    width: 100%;
  }
  
  .hero-intelligence-card {
    margin-top: 18px;
    border: none;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 25px 70px rgba(15, 23, 42, 0.08);
  }
}

@media (max-width: 480px) {
  .ss-hero {
    padding: 50px 0 40px;
  }
  
  .ss-hero h1 {
    font-size: 34px;
    line-height: 1.2;
  }
  
  .ss-hero-copy {
    font-size: 15px;
  }
  
  .ss-hero-statement {
    font-size: 21px;
  }
  
  .ss-hero-trust {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/*==============================================================================
20. RESPONSIVE DESIGN - DISCOVERY & FEATURES
==============================================================================*/
@media (max-width: 991px) {
  .ss-section-heading {
    margin-bottom: 50px;
  }
  
  .ss-category-card {
    padding: 22px;
  }

  .ss-feature-card {
    padding: 22px;
  }

  .ss-industry-card {
    padding: 22px 18px;
  }

  .ss-stat-card {
    padding: 34px;
  }

  .ss-dataset-card {
    padding: 32px;
  }

  .ss-testimonial-card {
    padding: 22px;
  }
}

@media (max-width: 767px) {
  .ss-section-heading {
    margin-bottom: 40px;
  }
  
  .ss-section-heading h2 {
    font-size: 28px;
  }
  
  .ss-category-card {
    padding: 20px;
    border-radius: 16px;
  }

  .ss-category-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
  }

  .ss-category-icon i {
    font-size: 24px;
  }

  .ss-category-icon img {
    width: 30px;
    height: 30px;
  }

  .ss-category-content h3 {
    font-size: 18px;
  }

  .ss-feature-card {
    padding: 20px;
  }

  .ss-industry-card {
    padding: 20px 16px;
  }

  .ss-stat-card {
    padding: 28px;
  }

  .ss-stat-number {
    font-size: 44px;
  }

  .ss-dataset-card {
    padding: 28px;
  }

  .ss-dataset-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .ss-dataset-footer .ss-btn {
    width: 100%;
  }

  .ss-testimonial-card {
    padding: 20px;
  }
}

/*==============================================================================
21. RESPONSIVE DESIGN - LATEST INTELLIGENCE
==============================================================================*/
@media (max-width: 991px) {
  .ss-latest-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .ss-latest-nav {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .ss-latest-nav {
    grid-template-columns: 1fr;
  }
  
  .ss-latest-nav button {
    padding: 16px 18px;
  }
  
  .ss-release-item {
    padding: 24px;
  }
  
  .ss-release-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .ss-release-header h3 a {
    font-size: 17px;
    white-space: normal;
  }
  
  .ss-release-id {
    flex: 0 0 auto;
    text-align: left;
  }
  
  .ss-view-all {
    padding: 24px;
  }
}

/*==============================================================================
22. RESPONSIVE DESIGN - TRUST & CLIENTS
==============================================================================*/
@media (max-width: 768px) {
  .ss-client-card {
    height: 84px;
    padding: 14px;
  }

  .ss-trust-bottom {
    margin-top: 20px;
  }
}

/*==============================================================================
23. RESPONSIVE DESIGN - PRICING
==============================================================================*/
@media (max-width: 991px) {
  .ss-home .subscription-plans {
    padding: 48px 0;
  }

  .ss-home .pricing-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .ss-home .pricing-card {
    padding: 24px;
  }

  .ss-home .pricing-card.featured {
    transform: none;
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .ss-home .subscription-plans {
    padding: 40px 0;
  }

  .ss-home .pricing-card {
    padding: 22px;
    border-radius: 18px;
  }

  .ss-home .pricing-card h2 {
    font-size: 28px;
  }

  .ss-home .ss-price strong {
    font-size: 50px;
  }

  .ss-home .ss-plan-desc {
    min-height: auto;
  }

  .ss-home .plan-btn {
    min-height: 52px;
  }
}

/*==============================================================================
24. RESPONSIVE DESIGN - DEMO CTA
==============================================================================*/
@media (max-width: 991px) {
  .ss-demo-wrapper {
    padding: 28px 24px;
  }

  .ss-demo-content {
    margin-bottom: 28px;
  }

  .ss-demo-content h2 {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .ss-demo-card {
    padding: 22px;
  }

  .ss-demo-content h2 {
    font-size: 26px;
  }

  .ss-demo-wrapper {
    padding: 22px 18px;
    border-radius: 20px;
  }
}

/*==============================================================================
25. ACCESSIBILITY & UTILITIES
==============================================================================*/
@media (prefers-reduced-motion: reduce) {
  .ss-search-track {
    animation: none;
  }
  
  .ss-category-card,
  .ss-feature-card,
  .ss-industry-card,
  .ss-stat-card,
  .ss-dataset-card,
  .ss-client-card,
  .ss-testimonial-card,
  .pricing-card,
  .ss-category-icon,
  .ss-feature-icon,
  .ss-industry-icon,
  .ss-category-arrow,
  .ss-industry-card span,
  .plan-btn {
    transition: none;
    animation: none;
  }
  
  .ss-category-card:hover,
  .ss-feature-card:hover,
  .ss-industry-card:hover,
  .ss-stat-card:hover,
  .ss-dataset-card:hover,
  .ss-client-card:hover,
  .ss-testimonial-card:hover,
  .pricing-card:hover {
    transform: none;
  }
}

/* Focus visibility for keyboard users */
.ss-category-card:focus-visible,
.ss-industry-card:focus-visible,
.ss-search-track a:focus-visible,
.ss-latest-nav button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(0, 168, 107, 0.18);
}
