@charset "UTF-8";
:root {
  --qchi-green: #0E8C3D;
  --qchi-green-dark: #0E8C3D;
  --qchi-green-light: #E8F5EE;
  --text-primary: #1A1A1A;
  --text-secondary: #555555;
  --text-light: #777777;
  --border: #E0E0E0;
  --bg-light: #F8F9FA;
  --white: #FFFFFF;
}
/* CSS Document */
.container {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 40px;
}
.section {
  padding: 40px 0;
}
.hero {
  padding: 70px 0;
}
h2, p {
  margin: 0px 0px 25px 0px;
}
p {
  color: var(--text-secondary);
}
.comphead {
  font-size: 22px;
  font-weight: bold !important;
}
.section {
  background: top left repeat-y url("../images/twocolumnverticalgrey.png") fixed;
  background-size: 199px auto;
}
.section-alt {
  background: top left repeat-y url("../images/twocolumnverticalgrey.png") fixed var(--bg-light);
  background-size: 199px auto;
}
.clientgrid {
  background: top left repeat-y url("../images/twocolumnverticalgrey.png") fixed #F5F5F5;
  background-size: 199px auto;
}
/* HERO SECTION */
.hero {
  background: top left repeat-y url("../../images/twocolumnvertical.png") fixed, top center no-repeat url("../../images/home-page.jpg") fixed #0E8C3D;
  background-size: 199px auto, cover;
  color: #FFFFFF;
  padding-top: 120px;
  text-align: center;
}
.hero p {
  color: #FFFFFF;
  font-size: 21px;
}
.hero h3 {
  text-transform: uppercase;
  margin-bottom: 25px;
}
.hero-cta {
  margin: 30px auto 0px auto;
  display: inline-block;
  padding: 15px;
  font-weight: 800;
  color: #FFFFFF;
  background-color: #AECA08;
  border-radius: 6px;
  text-transform: uppercase;
}
.hero-cta:hover {
  color: #AECA08;
  background-color: #FFFFFF;
}
/* PROSE/INTRO SECTION */
.prose {
  color: #000000;
}
.prose h2 {
  color: #0E8C3D;
}
/* COMPARISON TABLE */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  background: #FFFFFF;
}
.comparison-table thead th {
  background: var(--text-primary);
  color: var(--white);
  padding: 18px 24px;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
}
.comparison-table thead th:first-child {
  width: 35%;
}
.comparison-table thead th.qchi-col {
  background: var(--qchi-green);
}
.comparison-table tbody td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.comparison-table tbody tr:nth-child(even) {
  background: var(--bg-light);
}
.comparison-table tbody tr:last-child td {
  border-bottom: none;
}
.feature-name {
  font-weight: 600;
  color: var(--text-primary);
}
.check {
  color: var(--qchi-green);
  font-weight: 700;
  font-size: 1.1rem;
}
.partial {
  color: #E6A817;
  font-weight: 600;
}
.cross {
  color: #CCCCCC;
}
/* DIFFERENCES SECTION */
.container-differences {
  width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
.container-differences h2 {
  color: #0E8C3D;
}
.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 36px;
}
.diff-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 32px;
  transition: box-shadow 0.2s;
}
.diff-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}
.diff-card-icon {
  width: 96px;
  height: 96px;
  background: #AECA08;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 2.8rem;
}
.diff-card h3 {
  font-weight: 700;
  margin-bottom: 15px;
}
/* CTA SECTION */
.cta-banner {
  background: top left repeat-y url("../../images/twocolumnvertical.png") fixed #0E8C3D;
  background-size: 199px auto;
  padding: 60px 40px;
  text-align: center;
  color: var(--white);
}
.cta-banner h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.cta-banner p {
  color: #FFFFFF;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
/* PAIN GRID SECTION */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 36px;
}
.pain-card {
  background: var(--white);
  border-left: 4px solid #e74c3c;
  border-radius: 0 6px 6px 0;
  padding: 28px 28px 28px 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.pain-card h3 {
  margin-bottom: 8px;
  color: #c0392b;
}
.pain-card p {
  color: var(--text-secondary);
}
.pain-text {
  color: #E74C3C !important;
}
/* SOLUTION CARDS */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 36px;
}
.solution-card {
  background: var(--white);
  border-left: 4px solid var(--qchi-green);
  border-radius: 0 6px 6px 0;
  padding: 28px 28px 28px 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.solution-card h3 {
  margin-bottom: 8px;
  color: var(--qchi-green-dark);
}
.solution-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}
/* SCENARIO CARDS */
.scenario-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 36px;
}
.scenario-card {
  background: var(--white);
  border-left: 4px solid var(--qchi-green);
  border-radius: 0 6px 6px 0;
  padding: 28px 28px 28px 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.scenario-card h3 {
  margin-bottom: 8px;
  color: var(--qchi-green-dark);
}
.scenario-card p {
  color: var(--text-secondary);
}
.scenario-card .answer {
  color: var(--qchi-green);
  margin-top: 10px;
}
/* STATS SECTION */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 0px 0px;
  text-align: center;
}
.stat-item {
  padding: 24px;
}
.stat-number {
  font-size: 88px;
  font-weight: 800;
  color: var(--qchi-green);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 1.05rem;
  color: var(--text-secondary);
}
/* TWO COLUMN PRODUCT CARDS */
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 36px;
}
.product-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 6px;
  padding: 36px;
  transition: box-shadow 0.2s;
}
.product-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}
.product-card.highlighted {
  border-color: var(--qchi-green);
}
.product-card h3 {
  margin-bottom: 6px;
  color: var(--text-primary);
}
.product-card .tagline {
  font-size: 0.95rem;
  color: var(--qchi-green);
  font-weight: 600;
  margin-bottom: 18px;
}
.product-card p {
  color: var(--text-secondary);
  margin-bottom: 14px;
}
.product-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.product-card ul li {
  color: var(--text-secondary);
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
}
.product-card ul li::before {
  content: "\2713";
  color: var(--qchi-green);
  font-weight: 700;
  position: absolute;
  left: 0;
}
.product-card .product-cta {
  display: inline-block;
  margin-top: 20px;
  color: var(--qchi-green);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.product-card .product-cta:hover {
  color: var(--qchi-green-dark);
}
.fixlink {
	padding-bottom: 100px;
	position: relative;
}
.fixlink-two {
	padding-bottom: 50px;
	position: relative;
}
.fixtobottom {
	position: absolute;
	bottom: 40px;
}

/* RESPONSIVES */

@media screen and (max-width:1759px) {
  .hero {
    background-size: 175px auto, cover;
  }
  .section, .section-alt, .clientgrid {
    background-size: 175px auto;
  }
}

@media screen and (max-width:1439px) {
  .hero {
    background-size: 140px auto, cover;
  }
  .section, .section-alt, .clientgrid {
    background-size: 140px auto;
  }
}

@media screen and (max-width:1239px) {
  .hero {
    background-size: 110px auto, cover;
  }
  .section, .section-alt, .clientgrid {
    background-size: 110px auto;
  }
  .container-differences {
    width: 900px;
  }
}

@media screen and (max-width:949px) {
  .hero {
    background-size: 90px auto, cover;
  }
  .section, .section-alt, .clientgrid {
    background-size: 90px auto;
  }
  .container, .container-differences {
    width: 660px;
  }
  .diff-grid, .pain-grid, .solution-grid, .scenario-grid, .product-grid {
    gap: 14px;
  }	
}

@media screen and (max-width:689px) {
  .hero {
    background-size: 80px auto, cover;
  }
  .section, .section-alt, .clientgrid {
    background-size: 80px auto;
  }
  .container, .container-differences {
    width: 419px;
	padding-left: 0px;
	padding-right: 0px;
  }
  .comparison-table, .check, .cross, .partial {
    font-size: 0.75rem;
  }
}

@media screen and (max-width:459px) {
  .hero {
    background-size: 70px auto, cover;
  }
  .section, .section-alt, .clientgrid {
    background-size: 70px auto;
  }
  .container, .container-differences {
    width: 400px;
  }
}