

  /* Syscom Conversion Optimization Layout */
.syscom-cta-section {
  padding: 80px 0;
  background-color: #f4f6fa; /* Updated to clean white background */
  color: #1e293b; /* Updated to dark text for contrast */
  font-family: Arial, sans-serif;
}

.syscom-cta-section .cta-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Master Asymmetric Layout Split */
.syscom-cta-section .cta-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Typography Base Structure */
.syscom-cta-section .cta-info-block h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  color: #0f172a; /* Darker tone for header readability */
  margin-top: 0;
  margin-bottom: 20px;
}

.syscom-cta-section .cta-supporting-copy {
  font-size: 15.5px;
  line-height: 1.65;
  color: #475569; /* Balanced slate gray for paragraph copy */
  margin-top: 0;
  margin-bottom: 30px;
}

/* Clean Checked Benefit Component */
.syscom-cta-section .cta-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.syscom-cta-section .cta-benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.syscom-cta-section .benefit-check {
  color: #16a34a; /* Slightly darker crisp green for white canvas */
  font-weight: bold;
  font-size: 16px;
  line-height: 1.4;
  flex-shrink: 0;
}

.syscom-cta-section .benefit-text {
  font-size: 14.5px;
  line-height: 1.5;
  color: #334155; /* Mid-tone slate for checklist items */
}

/* Conversion Target Box */
.syscom-cta-section .cta-action-block {
  display: flex;
  justify-content: center;
}

.syscom-cta-section .action-card-inner {
  background: #e8ebee; /* Very light neutral gray tint for card definition */
  border: 1px solid #e2e8f0; /* Soft border framework */
  padding: 40px;
  border-radius: 12px;
  width: 100%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03); /* Subtle soft elevation */
}

/* Primary Conversion Interactive Button element */
.syscom-cta-section .syscom-primary-btn {
  width: 100%;
  background-color: #1a73e8; /* High visibility native primary operational brand blue */
  color: #ffffff;
  border: none;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
  box-shadow: 0 4px 12px rgba(26, 115, 232, 0.25);
}

.syscom-cta-section .syscom-primary-btn:hover {
  background-color: #155cb4;
}

.syscom-cta-section .syscom-primary-btn:active {
  transform: scale(0.98);
}

/* Under-button small secondary microcopy context styling */
.syscom-cta-section .cta-trust-statement {
  font-size: 13px;
  line-height: 1.5;
  color: #64748b; /* Accessible text gray */
  margin-top: 20px;
  margin-bottom: 0;
}

/* Responsive Structural Breakdown Layer */
@media (max-width: 991px) {
  .syscom-cta-section .cta-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .syscom-cta-section .action-card-inner {
    max-width: 100%;
    padding: 30px;
  }
}

@media (max-width: 767px) {
  .syscom-cta-section {
    padding: 60px 0;
  }

  .syscom-cta-section .cta-info-block h2 {
    font-size: 26px;
  }

  .syscom-cta-section .cta-supporting-copy {
    font-size: 14.5px;
  }
}

/*------------------------------------------*/

  /* Syscom Style Simple FAQ Section */
.syscom-faq-section {
  padding: 80px 0;
  background-color: #ffffff;
  font-family: Arial, sans-serif;
}

.syscom-faq-section .faq-container {
  max-width: 900px; /* narrowed down to look great centered on the layout */
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Style matching the main page layout */
.syscom-faq-section .faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.syscom-faq-section .faq-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #0a0e3d; /* Native core dark corporate color */
  line-height: 1.3;
  margin: 0;
}

/* Accordion Outer List Wrapper */
.syscom-faq-section .faq-accordion-stack {
  border-top: 1px solid #e2e8f0;
}

/* Individual Rows */
.syscom-faq-section .faq-item {
  border-bottom: 1px solid #e2e8f0;
}

/* Custom Accordion Trigger Buttons */
.syscom-faq-section .faq-trigger {
  width: 100%;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 10px;
  cursor: pointer;
  text-align: left;
  outline: none;
  transition: background-color 0.2s ease;
}

.syscom-faq-section .faq-trigger:hover {
  background-color: #f8fafc;
}

.syscom-faq-section .faq-question {
  font-size: 16px;
  font-weight: 600;
  color: #333333;
  line-height: 1.4;
  padding-right: 20px;
}

/* Minimal Vector-Based Arrow Element */
.syscom-faq-section .faq-arrow-icon {
  width: 12px;
  height: 12px;
  border-right: 2px solid #888888;
  border-bottom: 2px solid #888888;
  transform: rotate(45deg);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.2s;
  flex-shrink: 0;
  margin-right: 5px;
}

/* Active Open Row Styling State hooks */
.syscom-faq-section .faq-item.active .faq-question {
  color: #1a73e8; /* Highlight active native blue shade */
}

.syscom-faq-section .faq-item.active .faq-arrow-icon {
  transform: rotate(-135deg);
  border-color: #1a73e8;
}

/* Fluid Animation Expansion panels */
.syscom-faq-section .faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.syscom-faq-section .faq-content {
  padding: 0 10px 24px 10px;
}

.syscom-faq-section .faq-content p {
  font-size: 14.5px;
  color: #555555;
  line-height: 1.65;
  margin: 0;
}

/* Fluid Layout Configuration */
@media (max-width: 768px) {
  .syscom-faq-section {
    padding: 60px 0;
  }
  
  .syscom-faq-section .faq-header h2 {
    font-size: 24px;
  }

  .syscom-faq-section .faq-trigger {
    padding: 18px 5px;
  }

  .syscom-faq-section .faq-question {
    font-size: 15px;
  }
}

/*-----------------------------------*/

/* Syscom Split Layout Styling */
.syscom-split-section {
  padding: 80px 0;
  background-color: #f9fafc;
  font-family: 'Open Sans', BlinkMacSystemFont, sans-serif;
}

.syscom-split-section .syscom-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Intro Row Grid System */
.syscom-split-section .syscom-intro-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 2px solid #eef1f6;
}

.syscom-split-section .syscom-main-title h2 {
  font-size: 30px;
  color: #0b132a;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

.syscom-split-section .syscom-main-desc p {
  font-size: 15px;
  color: #4a5568;
  line-height: 1.6;
  margin: 0;
}

/* Feature Two-Column Matrix */
.syscom-split-section .syscom-split-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Feature Item Box Layout */
.syscom-split-section .syscom-split-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 30px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  border: 1px solid #edf2f7;
}

/* Make the last card take full width horizontally to look offset */
.syscom-split-section .unique-wide-card {
  grid-column: span 2;
}

.syscom-split-section .syscom-card-badge {
  font-size: 14px;
  font-weight: 700;
  color: #1a73e8;
  background: rgba(26, 115, 232, 0.08);
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.syscom-split-section .syscom-card-content h3 {
  font-size: 18px;
  color: #0b132a;
  font-weight: 600;
  margin: 0 0 10px 0;
  line-height: 1.4;
}

.syscom-split-section .syscom-card-content p {
  font-size: 14px;
  color: #5a6578;
  line-height: 1.6;
  margin: 0;
}

/* Testimonial Bottom Segment */
.syscom-split-section .syscom-footer-testimonial {
  margin-top: 40px;
  background: #0b132a;
  border-radius: 8px;
  padding: 40px;
  color: #ffffff;
}

.syscom-split-section .syscom-quote-inner blockquote {
  margin: 0 0 20px 0;
}

.syscom-split-section .syscom-quote-inner blockquote p {
  font-size: 16px;
  font-style: italic;
  line-height: 1.6;
  color: #e2e8f0;
}

.syscom-split-section .syscom-quote-inner cite {
  display: block;
  font-style: normal;
}

.syscom-split-section .syscom-quote-inner cite strong {
  display: block;
  font-size: 14px;
  color: #ffffff;
}

.syscom-split-section .syscom-quote-inner cite span {
  font-size: 13px;
  color: #a0aec0;
}

/* Logos Grid Layout */
.syscom-split-section .syscom-logos-strip {
  margin-top: 40px;
}

.syscom-split-section .strip-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #718096;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.syscom-split-section .strip-flex {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.syscom-split-section .placeholder-logo {
  flex: 1;
  min-width: 140px;
  height: 54px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.syscom-split-section .placeholder-logo span {
  font-size: 12px;
  color: #a0aec0;
}

/* Fluid Layout Configuration */
@media (max-width: 991px) {
  .syscom-split-section .syscom-intro-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .syscom-split-section .syscom-split-wrapper {
    grid-template-columns: 1fr;
  }
  .syscom-split-section .unique-wide-card {
    grid-column: span 1;
  }
}

@media (max-width: 767px) {
  .syscom-split-section {
    padding: 50px 0;
  }
  .syscom-split-section .syscom-main-title h2 {
    font-size: 24px;
  }
  .syscom-split-section .syscom-split-card {
    padding: 20px;
  }
  .syscom-split-section .placeholder-logo {
    min-width: 45%;
  }
}

/*----------------------------------------*/

  /* Section Base Styles */
  .field-management-section {
    padding: 80px 0;
    background-color: #ffffff;
  }

  .field-management-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  /* Section Header */
  .field-management-section .section-header {
    margin-bottom: 30px;
  }

  .field-management-section .section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #0a0e3d;
    line-height: 1.3;
    margin: 0;
  }

  /* Section Introduction */
  .field-management-section .section-intro {
    max-width: 900px;
    margin: 0 auto 60px auto;
  }

  .field-management-section .section-intro p {
    font-size: 16px;
    color: #555555;
    line-height: 1.7;
    margin: 0;
  }

  /* Features Grid */
  .field-management-section .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
  }

  /* Feature Card */
  .field-management-section .feature-card {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  }

  .field-management-section .feature-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
  }

  /* Feature Icon - SVG based, no external images */
  .field-management-section .feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f4ff;
    border-radius: 50%;
  }

  .field-management-section .feature-icon svg {
    width: 36px;
    height: 36px;
  }

  /* Feature Card Heading */
  .field-management-section .feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #0a0e3d;
    margin: 0 0 15px 0;
    line-height: 1.4;
  }

  /* Feature Card Paragraph */
  .field-management-section .feature-card p {
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
  }

  /* Section CTA */
  .field-management-section .section-cta {
    margin-top: 20px;
  }

  .field-management-section .btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
  }

  .field-management-section .btn-primary:hover {
    background: linear-gradient(135deg, #0d47a1 0%, #1a73e8 100%);
    box-shadow: 0 4px 20px rgba(26, 115, 232, 0.3);
    transform: translateY(-2px);
  }

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

  /* Responsive Styles */
  @media (max-width: 1024px) {
    .field-management-section .features-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 25px;
    }
  }

  @media (max-width: 768px) {
    .field-management-section {
      padding: 60px 0;
    }

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

    .field-management-section .features-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .field-management-section .feature-card {
      padding: 30px 25px;
    }

    .field-management-section .btn-primary {
      padding: 14px 30px;
      font-size: 15px;
    }
  }

  @media (max-width: 480px) {
    .field-management-section .section-header h2 {
      font-size: 22px;
    }

    .field-management-section .section-intro p {
      font-size: 14px;
    }

    .field-management-section .feature-card h3 {
      font-size: 18px;
    }

    .field-management-section .feature-card p {
      font-size: 14px;
    }
  }

  /*---------------------------------------------*/

  /* ===== Feature Section Styles ===== */
#feature-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    /*color: #0a0e3e;*/
    margin-bottom: 20px;
    line-height: 1.3;
}

.section-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #1e3a8a);
    margin: 30px auto 0;
    border-radius: 2px;
    border: none;
    opacity: 1;
}

/* Single Row Feature Cards */
.feature-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
}

.feature-row > .col {
    flex: 1 1 0;
    min-width: 0;
    padding: 0;
}

.crm_mid_card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 18px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.crm_mid_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #1e3a8a);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.crm_mid_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.12);
    border-color: transparent;
}

.crm_mid_card:hover::before {
    transform: scaleX(1);
}

.crm_mid_card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.crm_mid_card h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #0a0e3e;
    margin: 18px 0 10px;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.crm_mid_card:hover h4 {
    color: #1e3a8a;
}

.crm_mid_card p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Icon Wrapper */
.crm-icon-wrap {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.crm-icon-wrap::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 16px;
    border: 2px solid #3b82f6;
    opacity: 0.2;
}

.crm-icon-wrap img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(23%) sepia(85%) saturate(2024%) hue-rotate(214deg) brightness(97%) contrast(96%);
}

/* CTA Button */
.request_btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #1e3a8a 0%, #0a0e3e 100%);
    color: #ffffff;
    padding: 16px 40px;
    /*border-radius: 50px;*/
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.3);
}

.request_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.4);
    color: #ffffff;
}

/* Responsive - Stack on tablet/mobile */
@media (max-width: 991px) {
    #feature-section {
        padding: 60px 0;
    }
    .section-header h2 {
        font-size: 2rem;
    }
    .feature-row {
        flex-wrap: wrap;
    }
    .feature-row > .col {
        flex: 0 0 calc(50% - 8px);
    }
}

@media (max-width: 767px) {
    .section-header h2 {
        font-size: 1.6rem;
    }
    .section-header p {
        font-size: 1rem;
    }
    .feature-row > .col {
        flex: 0 0 100%;
    }
    .crm_mid_card {
        padding: 25px 20px;
    }
}


.gap-2 > * {
    margin-right: 0.5rem;
}

.gap-2 > *:last-child {
    margin-right: 0;
}