/* =========================================================
   HERO SECTION — SIMPLE & PROFESSIONAL (ENTERPRISE)
   ========================================================= */

.hero {
  background: #ffffff;
  padding: 120px 20px 100px;
}

/* =========================================================
   MAIN WRAPPER
   ========================================================= */

.hero-wrap {
  max-width: 1300px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

/* =========================================================
   IMAGE CONTAINER — CLEAN & NEUTRAL (RIGHT SIDE)
   ========================================================= */

.hero-media {
  display: flex;
  align-items: center;
  justify-content: center;

  background: #f7f9fc;               /* subtle neutral */
  border-top-left-radius: 160px;
  border-bottom-left-radius: 160px;

  height: 520px;
  padding: 40px;
}

/* IMAGE — NO EFFECTS, NO DISTORTION */

.hero-media img {
  height: 460px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

/* =========================================================
   TEXT CONTENT
   ========================================================= */

.hero-text {
  text-align: left;
}

.hero-tag {
  display: inline-block;
  background: #eef2ff;
  color: #001e62;
  font-weight: 600;
  font-size: 14px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}

/* HEADLINE */

.hero-text h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.2;
  color: #1c1c1c;
  margin-bottom: 24px;
}

.hero-text h1 span {
  color: #d50000;
}

/* DESCRIPTION */

.hero-text p {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
  max-width: 520px;
  margin-bottom: 36px;
}

/* CTA BUTTON */

.hero-cta {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
}

.hero-cta:hover {
  background: #222;
}

/* =========================================================
   MOBILE RESPONSIVE — SIMPLE & CLEAN
   ========================================================= */

@media (max-width: 768px) {
  .hero {
    padding: 60px 16px 70px;
  }

  .hero-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
	padding-top: 30px;
  }

  .hero-text {
    text-align: center;
  }

  .hero-media {
    height: auto;
    border-radius: 24px;
    padding: 24px;
  }

  .hero-media img {
    height: auto;
    max-height: 420px;
    width: 100%;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .hero-text p {
    font-size: 16px;
    margin: 0 auto 28px;
  }

  .hero-cta {
    width: 100%;
    padding: 14px 0;
  }
}


/* Accent Colors */
.accent-red {
  color: #d50000;
  font-weight: 700;
}

.accent-blue {
  color: #1e40af;
  font-weight: 600;
}

.accent-dark {
  color: #1f2937;
  font-weight: 600;
}

/* Title Styling */
.title-box .subtitle {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: #374151;
  margin-bottom: 10px;
}

.heading_title {
  font-size: 34px;
  line-height: 1.35;
  font-weight: 700;
  color: #111827;
}

/* Mobile */
@media (max-width: 768px) {
  .heading_title {
    font-size: 26px;
  }
}


/* =====================================
   ENTERPRISE HIGHLIGHT STRIP – SCM
   ===================================== */

/* ===============================
   TEXT ACCENT STYLES
   =============================== */

.accent-red {
  color: #d50000;
  font-weight: 700;
}

.accent-blue {
  color: #1e40af;
  font-weight: 600;
}

.accent-dark {
  color: #111827;
  font-weight: 600;
}

.accent-italic {
  font-style: italic;
  color: #374151;
  font-weight: 500;
}

.accent-muted {
  color: #4b5563;
  font-weight: 500;
}

/* ===============================
   EXISTING SECTION (SAFE)
   =============================== */

.scm-highlight {
  background: #f6f7f9;
  padding: 60px 20px;
  text-align: center;
}

.scm-highlight-container {
  max-width: 950px;
  margin: 0 auto;
}

.scm-highlight-tag {
  display: inline-block;
  background: #e9eef5;
  color: #1f2937;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.scm-highlight-title {
  font-size: 28px;
  font-weight: 500;
  color: #1c1c1c;
  line-height: 1.55;
  margin-bottom: 22px;
}

.scm-highlight-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
}

.scm-highlight-link:hover {
  color: #1e40af;
}

.scm-highlight-link .arrow {
  font-size: 18px;
  transition: transform 0.25s ease;
}

.scm-highlight-link:hover .arrow {
  transform: translateX(4px);
}

/* ===============================
   MOBILE
   =============================== */

@media (max-width: 768px) {
  .scm-highlight-title {
    font-size: 22px;
  }
}

/* ===============================
   ZERO-RISK POC – ENTERPRISE
   =============================== */

.poc-section {
  background: #f6f7f9;
  padding: 60px 20px;
}

/* GRID */
.poc-grid {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* ===============================
   LEFT CONTENT
   =============================== */

.poc-left h2 {
  font-size: 34px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
}

.poc-left h2 span {
  color: #d50000;
}

.poc-left p {
  font-size: 18px;
  line-height: 1.65;
  color: #4b5563;
  margin-bottom: 18px;
  max-width: 540px;
}

.poc-left ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.poc-left ul li {
  font-size: 16px;
  color: #1f2937;
  margin-bottom: 10px;
  font-weight: 500;
}

/* ===============================
   RIGHT CARD
   =============================== */

.poc-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 26px;
  border: 1px solid #e5e7eb;
}

.poc-card h3 {
  font-size: 19px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 12px;
}

.poc-card p {
  font-size: 16px;
  line-height: 1.65;
  color: #4b5563;
}

/* ===============================
   TEXT ACCENTS
   =============================== */

.accent-red {
  color: #c62828;
  font-weight: 600;
}

/* ===============================
   BUSINESS CONTENT
   =============================== */

.business-title-content .heading_title {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #111827;
}

.business-title-content .text {
  font-size: 16px;
  line-height: 1.65;
  color: #4b5563;
  margin-bottom: 14px;
}

/* ===============================
   QUOTE
   =============================== */

.impact-quote {
  margin: 20px 0 24px;
  padding: 12px 18px;
  border-left: 3px solid #c62828;
  background: #ffffff;
  font-size: 15px;
  font-style: italic;
  color: #374151;
}

/* ======================================================
   TABLET & MOBILE RESPONSIVE
   ====================================================== */

@media (max-width: 992px) {
  .poc-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .poc-left p {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .poc-section {
    padding: 40px 16px;
  }

  .poc-left h2 {
    font-size: 26px;
  }

  .poc-left p {
    font-size: 15px;
  }

  .poc-left ul li {
    font-size: 14px;
  }

  .poc-card {
    padding: 20px;
  }

  .poc-card h3 {
    font-size: 17px;
  }

  .poc-card p {
    font-size: 14px;
  }

  .business-title-content .heading_title {
    font-size: 22px;
  }

  .business-title-content .text {
    font-size: 15px;
  }

  .impact-quote {
    font-size: 14px;
    padding: 10px 14px;
  }
}

@media (max-width: 480px) {
  .poc-left h2 {
    font-size: 23px;
  }

  .impact-quote {
    font-size: 13.5px;
  }
}
