/* Modern Professional Styles for Starfleet Hub - Based on Original Theme */

/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&family=Montserrat:wght@300;400;500;600;700;800;900&display=swap");

:root {
  /* Simplified Color Scheme */
  --primary-color: #3b82f6; /* Professional blue */
  --secondary-color: #2563eb;
  --accent-color: #3b82f6;
  --success-color: #10b981;
  --error-color: #ef4444;
  --dark-bg: #0f172a;
  --darker-bg: #020617;
  --card-bg: rgba(30, 41, 59, 0.5);
  --light-text: #ffffff;
  --muted-text: #94a3b8;
  --body-text: #cbd5e1;
  --gradient-primary: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  --gradient-dark: linear-gradient(180deg, #0f172a 0%, #020617 100%);
  --border-color: rgba(59, 130, 246, 0.2);

  /* Typography */
  --font-primary: "Open Sans", Arial, sans-serif;
  --font-heading: "Montserrat", Helvetica, Arial, Lucida, sans-serif;

  /* Spacing */
  --section-padding: 53px 0;
  --row-padding: 26px 0;
  --container-max: 1080px;

  /* Borders and Radius */
  --border-radius: 3px;
  --border-radius-lg: 8px;
  --border-radius-xl: 16px;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  font-size: 14px;
  line-height: 1.7em;
  font-weight: 500;
  color: var(--muted-text);
  background-color: var(--dark-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography - Simplified */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--light-text);
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 600;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
}

h2 {
  font-size: 2.5rem;
  font-weight: 600;
}

h3 {
  font-size: 1.75rem;
  font-weight: 600;
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
}

h5 {
  font-size: 1rem;
  font-weight: 600;
}

h6 {
  font-size: 0.875rem;
  font-weight: 600;
}

p {
  padding-bottom: 1em;
  color: var(--muted-text);
}

p:last-of-type {
  padding-bottom: 0;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent-color);
  text-decoration: none;
}

/* Modern Container */
.container {
  width: 80%;
  max-width: var(--container-max);
  margin: 0 auto;
  position: relative;
}

/* Global Header */
.sfh-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(11, 18, 32, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sfh-nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.sfh-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.sfh-logo img {
  height: 34px;
  width: auto;
}

.sfh-logo-text {
  font-size: 1.05rem;
  line-height: 1.2;
}

.sfh-menu-toggle {
  display: none;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(11, 18, 32, 0.75);
  color: #ffffff;
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-size: 0.9rem;
  cursor: pointer;
}

.sfh-menu-toggle:focus {
  outline: 2px solid rgba(59, 130, 246, 0.85);
  outline-offset: 2px;
}

.sfh-menu-toggle i {
  font-size: 1rem;
}

.sfh-menu-toggle-label {
  font-size: 0.95rem;
  font-weight: 600;
}

.sfh-menu-wrapper {
  display: flex;
  align-items: center;
}

.sfh-menu {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sfh-menu a {
  color: #e8eefc;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.25s ease;
}

.sfh-menu a:hover,
.sfh-menu a:focus {
  color: #ffffff;
  text-decoration: underline;
}

.sfh-menu a[aria-current="page"] {
  color: #ffffff;
  font-weight: 600;
}

.sfh-btn,
.sfh-menu a.sfh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1rem;
  border-radius: 8px;
  background: var(--gradient-primary);
  color: #ffffff;
  font-weight: 600;
  border: none;
}

.sfh-menu a.sfh-btn:hover,
.sfh-menu a.sfh-btn:focus {
  color: #ffffff;
  text-decoration: none;
  filter: brightness(1.05);
}

@media (max-width: 1024px) {
  .sfh-nav {
    gap: 0.5rem;
  }

  .sfh-menu {
    gap: 1rem;
  }
}

@media (max-width: 900px) {
  .sfh-nav {
    position: relative;
    align-items: center;
  }

  .sfh-menu-toggle {
    display: inline-flex;
  }

  .sfh-logo-text {
    font-size: 0.95rem;
  }

  .sfh-menu-wrapper {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(11, 18, 32, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 12px 40px rgba(2, 6, 23, 0.55);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.75rem 1rem 1rem;
  }

  .sfh-header.sfh-menu-open .sfh-menu-wrapper {
    display: flex;
    animation: fadeInDown 0.2s ease;
  }

  .sfh-menu {
    width: 100%;
    flex-direction: column;
    gap: 0.75rem;
  }

  .sfh-menu li {
    width: 100%;
  }

  .sfh-menu a {
    width: 100%;
    display: inline-flex;
    justify-content: flex-start;
  }

  .sfh-menu a.sfh-btn {
    margin-top: 0.5rem;
    justify-content: center;
  }
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%),
    url("../wp-content/uploads/2024/02/starlink_hub_1920x1388.jpg") center/cover;
  background-color: var(--primary-color);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 46px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.2em;
  margin-bottom: 1.5rem;
  color: var(--light-text);
  animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
  font-size: 16px;
  color: var(--muted-text);
  margin-bottom: 2.5rem;
  line-height: 1.8em;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
  margin-top: 40px;
}

/* Hide hero visual image - not needed with background */
.hero-visual {
  display: none;
}

.reseller-hero {
  background: var(--gradient-dark);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.reseller-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--light-text);
}

.reseller-hero .lead,
.lead {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--muted-text);
  max-width: 720px;
}

.trust {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--muted-text);
}

.trust .trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.trust i {
  color: var(--accent-color);
}

/* Modern Buttons - Simplified */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--light-text);
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--light-text);
}

/* Nav Brand Text */
.nav-brand-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  margin-left: 1rem;
  color: var(--light-text);
}

/* Feature Cards */
.features-section {
  background: var(--dark-bg);
  padding: var(--section-padding);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-xl);
  padding: 2.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 40px rgba(110, 66, 255, 0.2);
}

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

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: var(--light-text);
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--light-text);
  text-transform: uppercase;
}

.feature-description {
  color: var(--muted-text);
  line-height: 1.8em;
  font-size: 13px;
}

/* Platform Showcase */
.platform-showcase {
  background: var(--darker-bg);
  padding: var(--section-padding);
  position: relative;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.showcase-content h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--light-text);
}

.showcase-list {
  list-style: none;
  margin: 2rem 0;
}

.showcase-list li {
  padding: 0.75rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--muted-text);
  font-size: 14px;
}

.showcase-list li::before {
  content: "→";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--gradient-primary);
  border-radius: 50%;
  color: white;
  font-size: 14px;
  flex-shrink: 0;
}

.showcase-visual {
  position: relative;
}

.showcase-visual img {
  width: 100%;
  height: auto;
  max-width: 600px;
  border-radius: var(--border-radius-xl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-color);
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 300;
  margin-bottom: 1rem;
  color: var(--light-text);
  text-transform: none;
  line-height: 1.2em;
}

.section-header h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.section-header p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8em;
}

.section {
  padding: var(--section-padding);
  background: var(--dark-bg);
}

.section-alt {
  background: var(--darker-bg);
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid.grid-3,
.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-color);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.35);
}

.card h3 {
  color: var(--light-text);
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.card p {
  color: var(--muted-text);
  font-size: 0.95rem;
  line-height: 1.7;
}

.cta {
  background: var(--gradient-primary);
  padding: 80px 0;
  text-align: center;
}

.cta h2 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.cta p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.cta .btn {
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.45);
}

/* CTA Section */
.cta-section {
  background: var(--gradient-primary);
  padding: var(--section-padding);
  text-align: center;
}

.cta-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: white;
}

.cta-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 14px;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border-color);
}

.hero-stat {
  text-align: center;
}

.stat-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  display: block;
  color: var(--muted-text);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Stats Section */
.stats-section {
  background: var(--gradient-dark);
  padding: var(--section-padding);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-card {
  padding: 2rem;
  background: var(--card-bg);
  border-radius: var(--border-radius-xl);
  border: 1px solid var(--border-color);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--muted-text);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Footer */
.modern-footer {
  background: var(--darker-bg);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand img {
  height: 40px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--muted-text);
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--card-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--primary-color);
  color: var(--dark-bg);
  transform: translateY(-2px);
}

.footer-links h4 {
  font-family: var(--font-heading);
  color: var(--light-text);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  text-transform: uppercase;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--muted-text);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  color: var(--muted-text);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Glass Morphism Effects */
.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-xl);
  padding: 2rem;
}

/* Gradient Text */
.gradient-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Responsive Design */
@media (max-width: 980px) {
  .hero-title {
    font-size: 36px;
  }

  .section-header h2 {
    font-size: 32px;
  }
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .feature-showcase {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .feature-showcase.reverse {
    grid-template-columns: 1fr;
  }

  .feature-showcase-images {
    order: 2;
    max-width: 600px;
    margin: 0 auto;
  }

  .feature-showcase-content {
    order: 1;
  }

  .comparison-row {
    grid-template-columns: 1fr;
  }

  .comparison-cell {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
  }

  .comparison-cell.feature-name {
    background: var(--primary-color);
    color: white;
    text-align: center;
  }

  .comparison-row.header {
    display: none;
  }
}

@media (max-width: 768px) {
  .reseller-hero {
    padding: 100px 0 60px;
    text-align: center;
  }

  .reseller-hero h1 {
    font-size: 2.2rem;
  }

  .reseller-hero .lead {
    margin: 0 auto;
    font-size: 1.05rem;
  }

  .trust {
    justify-content: center;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .section-header h2 {
    font-size: 26px;
  }

  .section-header h3 {
    font-size: 14px;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mt-1 {
  margin-top: 1rem;
}
.mt-2 {
  margin-top: 2rem;
}
.mt-3 {
  margin-top: 3rem;
}
.mt-4 {
  margin-top: 4rem;
}

.mb-1 {
  margin-bottom: 1rem;
}
.mb-2 {
  margin-bottom: 2rem;
}
.mb-3 {
  margin-bottom: 3rem;
}
.mb-4 {
  margin-bottom: 4rem;
}

.text-primary {
  color: var(--primary-color);
}
.text-muted {
  color: var(--muted-text);
}
.text-light {
  color: var(--light-text);
}

/* Dashboard Gallery */
.dashboard-gallery {
  background: var(--darker-bg);
  padding: var(--section-padding);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.gallery-caption {
  padding: 1.5rem;
}

.gallery-caption h4 {
  color: var(--light-text);
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.gallery-caption p {
  color: var(--muted-text);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Price & Simplicity Section */
.price-simplicity {
  background: var(--dark-bg);
  padding: var(--section-padding);
}

.simplicity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.simplicity-card {
  text-align: center;
  padding: 2rem;
  background: var(--card-bg);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.simplicity-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  background: rgba(59, 130, 246, 0.05);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  color: var(--light-text);
}

.simplicity-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--light-text);
}

.simplicity-card p {
  color: var(--muted-text);
  font-size: 0.95rem;
  line-height: 1.6;
}

.cost-comparison {
  text-align: center;
  margin-top: 4rem;
  padding: 3rem;
  background: var(--card-bg);
  border-radius: 16px;
  border: 1px solid var(--border-color);
}

.cost-comparison h3 {
  font-size: 2rem;
  color: var(--light-text);
  margin-bottom: 1rem;
}

.cost-comparison p {
  font-size: 1.1rem;
  color: var(--muted-text);
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

/* Feature Showcase Images */
.feature-img {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.feature-img:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.3);
  border-color: var(--primary-color);
}

.feature-img.primary {
  grid-column: 1 / span 2;
}

.feature-img.secondary {
  grid-column: 2 / span 1;
  margin-top: -3rem;
  z-index: 1;
}

.feature-img.full {
  grid-column: 1 / -1;
  max-width: 100%;
}

/* Feature Showcase Layout */
.feature-showcase {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
  padding: 3rem 0;
  border-bottom: 1px solid var(--border-color);
}

.feature-showcase:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.feature-showcase.reverse {
  grid-template-columns: 1.5fr 1fr;
}

.feature-showcase-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--light-text);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.feature-showcase-content h3 i {
  color: var(--primary-color);
  font-size: 1.5rem;
}

.feature-showcase-content p {
  font-size: 1.15rem;
  color: var(--muted-text);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.feature-showcase-images {
  display: grid;
  gap: 1rem;
  position: relative;
  justify-items: center;
}

/* Industries Section Styles */
.industries-section {
  background: var(--dark-bg);
  padding: var(--section-padding);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.industry-card {
  text-align: center;
  padding: 2rem;
  background: var(--card-bg);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  background: rgba(59, 130, 246, 0.05);
}

.industry-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.industry-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--light-text);
}

.industry-card p {
  color: var(--muted-text);
  font-size: 0.9rem;
}

/* Competitive Advantage Section */
.competitive-advantage {
  background: var(--dark-bg);
  padding: var(--section-padding);
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.comparison-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
}

.comparison-card.highlight {
  border-color: var(--primary-color);
  background: rgba(59, 130, 246, 0.05);
  transform: scale(1.05);
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.2);
}

.card-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.card-header h3 {
  font-size: 1.5rem;
  color: var(--light-text);
  margin-bottom: 0.5rem;
}

.badge {
  display: inline-block;
  background: var(--primary-color);
  color: var(--light-text);
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

.feature-list {
  list-style: none;
  margin-bottom: 2rem;
}

.feature-list li {
  padding: 0.75rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--muted-text);
  border-bottom: 1px solid rgba(59, 130, 246, 0.05);
}

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

.feature-list i.fa-check {
  color: var(--success-color);
  font-size: 1rem;
}

.feature-list i.fa-times {
  color: var(--error-color);
  font-size: 1rem;
}

.btn.full-width {
  width: 100%;
  text-align: center;
  justify-content: center;
}

.btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* Comparison Table */
.competitive-comparison {
  background: var(--darker-bg);
  padding: var(--section-padding);
}

.comparison-table {
  overflow-x: auto;
  margin-top: 3rem;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.comparison-row {
  display: grid;
  grid-template-columns: 2fr 2fr 2fr 2fr;
  border-bottom: 1px solid var(--border-color);
}

.comparison-row.header {
  background: var(--card-bg);
  font-weight: 600;
}

.comparison-cell {
  padding: 1.5rem;
  text-align: center;
  color: var(--muted-text);
  border-right: 1px solid var(--border-color);
}

.comparison-cell:last-child {
  border-right: none;
}

.comparison-cell.feature-name {
  text-align: left;
  font-weight: 600;
  color: var(--light-text);
  background: var(--card-bg);
}

.comparison-cell.highlight {
  background: rgba(59, 130, 246, 0.1);
  color: var(--light-text);
  font-weight: 600;
}

.comparison-row.header .comparison-cell.highlight {
  background: var(--primary-color);
  color: white;
}

.comparison-cell i.fa-check {
  color: var(--success-color);
  margin-right: 0.5rem;
}

.comparison-cell i.fa-times {
  color: var(--error-color);
}

.comparison-cell i.fa-minus {
  color: var(--muted-text);
}

/* Blur competitor names */
.comparison-cell.blurred {
  filter: blur(3px);
  transition: filter 0.3s ease;
  cursor: default;
  user-select: none;
}

.comparison-cell.blurred:hover {
  filter: blur(2px);
}

.comparison-summary {
  margin-top: 2rem;
  text-align: center;
  padding: 2rem;
  background: var(--card-bg);
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.comparison-summary p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--body-text);
}

.cta-note {
  margin-top: 2rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
}
