/* Custom CSS for AdminGloves Website */

/* Color Scheme - Modern Professional Palette */
:root {
  --primary: #2563eb;
  --primary-dark: #1e40af;
  --primary-light: #3b82f6;
  --secondary: #10b981;
  --accent: #f59e0b;
  --dark: #1f2937;
  --dark-light: #374151;
  --gray: #6b7280;
  --light-gray: #f3f4f6;
  --white: #ffffff;
  --gradient-primary: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  --gradient-secondary: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Skip to main content (accessibility) */
.skip-to-main {
  position: absolute;
  left: -9999px;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
  border-radius: 0.25rem;
  text-decoration: none;
}
.skip-to-main:focus {
  left: 1rem;
  top: 1rem;
}

/* Typography */
body {
  font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--dark);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
  background: var(--gradient-secondary);
  color: var(--white);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

/* Cards */
.card {
  background: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--dark);
}

/* Hero Section */
.hero {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 1;
}

/* Navigation */
.navbar {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

/* Header link hover effects (desktop) */
header nav ul li a {
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.2s ease, transform 0.15s ease;
}

header nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 999px;
  transition: width 0.2s ease;
}

header nav ul li a:hover {
  color: var(--primary);
  transform: translateY(-1px);
}

header nav ul li a:hover::after {
  width: 100%;
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--dark);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* Footer */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 3rem 0 1.5rem;
}

.footer a {
  color: var(--light-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--white);
}

/* Responsive Utilities */
@media (max-width: 768px) {
  .section {
    padding: 3rem 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero {
    padding: 4rem 0;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Accordion */
.accordion-item {
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  overflow: hidden;
}

.accordion-header {
  background: var(--light-gray);
  padding: 1.25rem;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

.accordion-header:hover {
  background: #e5e7eb;
}

.accordion-content {
  padding: 0 1.25rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
  padding: 1.25rem;
  max-height: 1000px;
}

/* Pricing Cards */
.pricing-card {
  text-align: center;
  position: relative;
}

.pricing-card.featured {
  border: 2px solid var(--primary);
  transform: scale(1.05);
}

.pricing-price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin: 1rem 0;
}

.pricing-period {
  color: var(--gray);
  font-size: 0.875rem;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Hero Section Styles */
.hero-section {
  background: linear-gradient(135deg, #00a9fe 0%, #1e40af 100%);
  color: #ffffff;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.hero-title strong {
  display: block;
  margin-top: 0.5rem;
}

.hero-title .highlight {
  color: #00a9fe;
  display: block;
  margin-top: 1rem;
  font-size: 1.5rem;
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.95);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  border-radius: 28px;
  border: 2px solid #00a9fe;
}

.hero-buttons .btn-primary {
  background: #ffffff;
  color: #000000;
}

.hero-buttons .btn-primary:hover {
  background: #fffab0;
  color: #00a9fe;
  transform: translateY(-2px);
}

.hero-buttons .btn-secondary {
  background: #ffffff;
  color: #000000;
}

.hero-buttons .btn-secondary:hover {
  background: #fffab0;
  color: #00a9fe;
  transform: translateY(-2px);
}

/* Features Section */
.features-section {
  padding: 5rem 0;
  background: #ffffff;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: #6b7280;
  max-width: 700px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.feature-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.75rem 1.5rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 200px;
  text-align: left;
}

.feature-card:hover {
  border-color: #93c5fd;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.1);
}

.feature-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #e5f2ff;
  color: #0f172a;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
}

.feature-card h3 {
  font-size: 1.02rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.feature-card p {
  color: #6b7280;
  line-height: 1.5;
  font-size: 0.95rem;
}

/* Detailed Features Section */
.detailed-features-section {
  padding: 5rem 0;
  background: #ffffff;
}

.feature-tile {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 2rem;
  background: #f9fafb;
  transition: all 0.25s ease;
}

.feature-tile:hover {
  border-color: #00a9fe;
  background: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgba(0, 169, 254, 0.12);
}

.feature-tile h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.625rem;
}

.feature-tile p {
  font-size: 0.9375rem;
  color: #6b7280;
  line-height: 1.6;
}

.cta-section {
  text-align: center;
  margin-top: 3rem;
}

.cta-section .btn {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  border-radius: 28px;
  background: #00a9fe;
  color: #ffffff;
  border: 2px solid #00a9fe;
}

.cta-section .btn:hover {
  background: #fffab0;
  color: #00a9fe;
  border-color: #fffab0;
  transform: translateY(-2px);
}

/* Navigation Styles */
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
}

.navbar-brand img {
  height: 50px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-menu li a {
  color: #000000;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu li a:hover {
  color: #00a9fe;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #000000;
  transition: all 0.3s ease;
}

/* Footer Styles */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 3rem 0 1.5rem;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1.5rem;
}

.footer-links-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.footer-links-inline a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links-inline a:hover {
  color: #00a9fe;
}

.footer-divider {
  color: rgba(255, 255, 255, 0.4);
}

.footer-duns-btn {
  white-space: nowrap;
  font-size: 0.9rem;
}

.footer-bottom {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.footer-company {
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 1.75rem;
  }
  
  .hero-title .highlight {
    font-size: 1.25rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
}

/* Product Page Styles */
.product-hero-section {
  background: linear-gradient(135deg, #00a9fe 0%, #1e40af 100%);
  color: #ffffff;
  padding: 4rem 0;
  text-align: center;
}

.product-hero-section h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.product-subtitle {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.95);
}

.product-features-section,
.platforms-section,
.ldaps-section {
  padding: 3rem 0;
}

.features-list,
.platforms-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}

.features-list li,
.platforms-list li {
  padding: 1rem;
  margin-bottom: 0.5rem;
  background: #f9fafb;
  border-left: 4px solid #00a9fe;
  border-radius: 4px;
}

.ldaps-section p {
  text-align: center;
  font-size: 1.125rem;
  color: #6b7280;
  max-width: 800px;
  margin: 0 auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* Pricing Page Styles */
.pricing-hero-section {
  background: linear-gradient(135deg, #00a9fe 0%, #1e40af 100%);
  color: #ffffff;
  padding: 4rem 0;
  text-align: center;
}

.pricing-hero-section h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.pricing-subtitle {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.95);
}

.pricing-section {
  padding: 5rem 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.pricing-card {
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
  border-color: #00a9fe;
  transform: scale(1.05);
}

.pricing-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #00a9fe;
  color: #ffffff;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.pricing-header h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1f2937;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #00a9fe;
  margin-bottom: 1.5rem;
}

.pricing-price .currency {
  font-size: 1.5rem;
  vertical-align: top;
}

.pricing-price .price-alt {
  display: block;
  font-size: 1rem;
  color: #6b7280;
  font-weight: 400;
  margin-top: 0.5rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  text-align: left;
}

.pricing-features li {
  padding: 0.75rem 0;
  color: #374151;
  border-bottom: 1px solid #f3f4f6;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

.pricing-note {
  background: #f9fafb;
  border-radius: 12px;
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-note p {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1f2937;
}

.pricing-note ul {
  list-style: none;
  padding: 0;
}

.pricing-note ul li {
  padding: 0.5rem 0;
  color: #6b7280;
  padding-left: 1.5rem;
  position: relative;
}

.pricing-note ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #00a9fe;
  font-weight: bold;
  font-size: 1.5rem;
}

/* Contact Page Styles */
.contact-hero-section,
.trial-hero-section {
  background: linear-gradient(135deg, #00a9fe 0%, #1e40af 100%);
  color: #ffffff;
  padding: 4rem 0;
  text-align: center;
}

.contact-hero-section h1,
.trial-hero-section h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.contact-subtitle,
.trial-subtitle {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.95);
}

.contact-form-section,
.trial-form-section {
  padding: 5rem 0;
}

.contact-wrapper,
.trial-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-wrapper-single {
  display: flex;
  justify-content: center;
}

.contact-info-only {
  max-width: 600px;
}

.contact-form-container,
.trial-form-container {
  background: #ffffff;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form-container h2,
.trial-form-container h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: #1f2937;
}

.contact-form-container p,
.trial-form-container p {
  color: #6b7280;
  margin-bottom: 2rem;
}

.contact-info-container,
.trial-benefits-container {
  background: #f9fafb;
  border-radius: 12px;
  padding: 2.5rem;
}

.contact-info-container h2,
.trial-benefits-container h2 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: #1f2937;
}

.contact-info h3 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: #1f2937;
}

.contact-info p {
  margin-bottom: 1.5rem;
  color: #374151;
  line-height: 1.6;
}

.contact-info a {
  color: #00a9fe;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.trial-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.trial-benefits li {
  padding: 0.75rem 0;
  color: #374151;
  border-bottom: 1px solid #e5e7eb;
}

.trial-benefits li:last-child {
  border-bottom: none;
}

.trial-note {
  background: #ffffff;
  border-left: 4px solid #00a9fe;
  padding: 1rem;
  border-radius: 4px;
  margin-top: 2rem;
}

.trial-note p {
  margin: 0;
  color: #6b7280;
  font-size: 0.9375rem;
}

@media (max-width: 768px) {
  .contact-wrapper,
  .trial-wrapper {
    grid-template-columns: 1fr;
  }
  
  .product-hero-section h1,
  .help-hero-section h1 {
    font-size: 1.75rem;
  }
  
  .product-subtitle,
  .help-hero-section p {
    font-size: 1rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .card {
    padding: 1.5rem;
  }
  
  .prose {
    font-size: 0.9375rem;
  }
  
  .prose h2 {
    font-size: 1.5rem;
  }
  
  .prose h3 {
    font-size: 1.25rem;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }
  
  .container {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.5rem;
  }
  
  .hero-title .highlight {
    font-size: 1rem;
  }
  
  .section-header h2 {
    font-size: 1.75rem;
  }
  
  .pricing-price {
    font-size: 2rem;
  }
}

/* Help Page Styles */
.help-hero-section {
  background: linear-gradient(135deg, #00a9fe 0%, #1e40af 100%);
  color: #ffffff;
  padding: 4rem 0;
  text-align: center;
}

.help-hero-section h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.help-hero-section p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
}

.faq-section {
  padding: 5rem 0;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-container h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #1f2937;
}

.faq-item {
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  padding: 0;
  margin-bottom: 1rem;
  background: #fafafa;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #c7e7ff;
  background: #f3faff;
}

.faq-item[open] {
  background: #f3faff;
  border-color: #c7e7ff;
}

.faq-item summary {
  font-size: 1rem;
  font-weight: 600;
  padding: 1.25rem 1.5rem;
  outline: none;
  cursor: pointer;
  color: #1f2937;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "▶";
  float: right;
  transition: transform 0.3s ease;
  color: #00a9fe;
}

.faq-item[open] summary::after {
  transform: rotate(90deg);
}

.faq-item p {
  padding: 0 1.5rem 1.5rem 1.5rem;
  margin-top: 0.625rem;
  line-height: 1.6;
  color: #374151;
}

.faq-item code {
  background: #0b1220;
  color: #e6ffea;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-family: monospace;
  font-size: 0.875rem;
}

.installation-guides-section {
  padding: 5rem 0;
  background: #f9fafb;
}

.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.guide-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.guide-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #00a9fe;
}

.guide-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin: 0 auto 1rem;
  display: block;
}

.guide-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1f2937;
}

.guide-card p {
  color: #6b7280;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.support-section {
  padding: 3rem 0;
  text-align: center;
}

.support-text {
  font-size: 1.125rem;
  color: #374151;
}

.support-text a {
  color: #00a9fe;
  text-decoration: none;
}

.support-text a:hover {
  text-decoration: underline;
}

/* Comparison Section Styles */
.comparison-section {
  padding: 5rem 0;
  background: #f9fafb;
}

.section-header-center {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2rem;
}

.feature-compare-card {
  max-width: 1100px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.12);
  border: 1px solid #e5e7eb;
  overflow: hidden;
}

.feature-compare-header,
.feature-compare-row {
  display: grid;
  grid-template-columns: minmax(180px, 0.9fr) 1fr 1fr;
  column-gap: 1.5rem;
}

.feature-compare-header {
  background: linear-gradient(135deg, #00a9fe 0%, #1e40af 100%);
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 1.1rem 1.8rem;
}

.feature-compare-header > div:nth-child(2),
.feature-compare-header > div:nth-child(3) {
  text-align: left;
}

.feature-compare-row {
  padding: 1.1rem 1.8rem;
  border-top: 1px solid #e5e7eb;
  font-size: 0.95rem;
}

.feature-compare-row:nth-child(odd) {
  background: #f9fafb;
}

.feature-name {
  font-weight: 600;
  color: #0f172a;
}

.ours,
.others {
  line-height: 1.6;
}

.ours {
  background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  box-shadow: inset 0 0 0 1px #bfdbfe;
  color: #111827;
}

.others {
  padding: 0.75rem 0.2rem 0.75rem 1rem;
  color: #6b7280;
}

.cta-below-compare {
  margin-top: 2.5rem;
  text-align: center;
}

.cta-below-compare h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #0f172a;
}

.cta-below-compare p {
  color: #6b7280;
  margin-bottom: 1.5rem;
}

/* Key feature checklist (no comparison table) */
.key-feature-card {
  max-width: 980px;
  margin: 0 auto 2.5rem;
  padding: 2rem 2.25rem;
  border-radius: 18px;
  background: radial-gradient(circle at top left, #eff6ff 0, #ffffff 45%);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  border: 1px solid #e5e7eb;
}

.key-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 2rem;
  row-gap: 0.4rem;
}

.key-feature-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.02rem;
  color: #0f172a;
  white-space: nowrap;
}

.key-feature-list li::before {
  content: "✔";
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #10b981;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Responsive Footer & Comparison */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-duns-btn {
    width: 100%;
    text-align: center;
  }

  .feature-compare-header,
  .feature-compare-row {
    grid-template-columns: 1fr;
    row-gap: 0.4rem;
    padding: 0.9rem 1.2rem;
  }

  .ours,
  .others {
    padding: 0.65rem 0.85rem;
  }

  .feature-icon {
    width: 48px;
    height: 48px;
  }
}


