
:root {
  --fp-teal: #00BDB0;
  --fp-teal-dk: #009e93;
  --fp-dark: #0c1120;
}

/* Global minimum font size for this vendor page */
.hero, .pillars, .product, .product-highlights, .contact-cta {
  font-size: max(14px, 1rem);
}

/* ── HERO ── */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  margin: 0 -15px;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(8, 15, 35, 0.65);
  z-index: 1;
}

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 90px 30px;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: 24px;
  line-height: 1.08;
  letter-spacing: -1px;
}

.hero-title .line-white { display: block; color: #fff; }
.hero-title .line-teal  { display: block; color: var(--fp-teal); }

.hero-text {
  font-size: clamp(16px, 1.25rem, 1.3rem);
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-fp-teal {
  background: var(--fp-teal);
  color: #fff !important;
  padding: 12px 24px;
  border-radius: 7px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}

.btn-fp-teal:hover {
  background: var(--fp-teal-dk);
  text-decoration: none;
}

.btn-fp-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: #fff !important;
  padding: 12px 24px;
  border-radius: 7px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  transition: border-color 0.2s, color 0.2s;
  cursor: pointer;
}

.btn-fp-outline:hover {
  border-color: var(--fp-teal);
  color: var(--fp-teal) !important;
  text-decoration: none;
}

@media (max-width: 768px) {
  .hero-content { padding: 60px 20px; }
  .hero-title { font-size: 2.2rem; letter-spacing: -0.5px; }
}

/* ── PILLARS ── */
.pillars {
  margin: 50px 0;
  padding: 0 15px;
}

.pillar-icon i {
  color: var(--fp-teal);
}

.pillar-title {
  font-weight: 700;
  margin-bottom: 10px;
}

.pillar-text {
  font-size: clamp(14px, 1rem, 1.1rem);
  color: #555;
  max-width: 280px;
  margin: 0 auto;
}

/* ── FEATURED PRODUCTS ── */
.fp-featured {
  padding: 70px 30px;
  background: #f8f9fb;
}

.fp-featured-inner {
  max-width: 1060px;
  margin: 0 auto;
}

.fp-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--fp-teal);
  margin-bottom: 10px;
}

.fp-featured-inner h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #1f2937;
  margin: 0 0 40px;
}

.fp-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.fp-product-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 26px 24px;
  border-top: 3px solid var(--fp-teal);
  transition: box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
}

.fp-product-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.fp-product-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.fp-product-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 10px;
}

.fp-product-card-header h3 {
  margin: 0;
}

.fp-product-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--fp-teal);
  background: rgba(0, 189, 176, 0.1);
  border: 1px solid rgba(0, 189, 176, 0.3);
  padding: 3px 10px;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
}

.fp-product-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 900px) {
  .fp-product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .fp-featured { padding: 50px 20px; }
  .fp-product-grid { grid-template-columns: 1fr; }
}

/* ── PLATFORM SECTION ── */
.fp-platform {
  padding: 80px 30px;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.fp-platform-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 80px;
  align-items: start;
}

.fp-platform-title {
  font-size: 2.2rem;
  font-weight: 900;
  color: #1f2937;
  margin: 12px 0 16px;
  line-height: 1.15;
}

.fp-platform-title span {
  color: var(--fp-teal);
}

.fp-platform-desc {
  font-size: clamp(14px, 1rem, 1.1rem);
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
}

.fp-solve-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--fp-teal);
  margin-bottom: 20px;
}

.fp-solve-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.fp-solve-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border: 1px solid #e5e7eb;
  border-left: 3px solid var(--fp-teal);
  border-radius: 0 8px 8px 0;
  transition: background 0.2s, box-shadow 0.2s;
}

.fp-solve-item:hover {
  background: rgba(0, 189, 176, 0.05);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.fp-solve-item i {
  font-size: 15px;
  color: var(--fp-teal);
  flex-shrink: 0;
}

.fp-solve-item span {
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
  line-height: 1.3;
}

.fp-solve-item:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: calc(50% - 5px);
}

@media (max-width: 900px) {
  .fp-platform-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 600px) {
  .fp-platform { padding: 50px 20px; }
  .fp-solve-grid { grid-template-columns: 1fr; }
  .fp-solve-item:last-child:nth-child(odd) { max-width: 100%; }
}

/* ── PRODUCT CATEGORY BANNERS ── */
.product.data-security {
  background: url('/images/forcepoint/forcepoint-banner.jpeg') no-repeat center center / cover;
  color: #fff;
}

.product.network-security {
  background: url('/images/forcepoint/forcepoint-banner.jpeg') no-repeat center 35% / cover;
  color: #fff;
}

.product.data-security::before {
  background: rgba(0, 20, 50, 0.72);
}

.product.network-security::before {
  background: rgba(0, 50, 60, 0.75);
}

.product {
  position: relative;
  padding: 80px 30px;
  text-align: start;
  margin: 50px 0;
}

.product::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
}

.product .row {
  position: relative;
  z-index: 1;
}

.product-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 18px;
}

.product-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.88);
}

.product-btn {
  background: var(--fp-teal);
  color: #fff !important;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.25s;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.product-btn:hover {
  background: var(--fp-teal-dk);
  color: #fff !important;
  text-decoration: none;
}

/* ── PRODUCT HIGHLIGHTS ── */
.product-highlights {
  margin: 30px 0;
  padding: 20px 0;
}

.product-highlights-title {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--fp-teal);
}

.product-highlights-desc {
  font-size: clamp(14px, 1rem, 1.1rem);
  line-height: 1.65;
  margin-bottom: 20px;
  color: #444;
}

.product-highlights-img {
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.product-highlights-img.product-bg {
  background: #f4f6f8;
  padding: 20px;
}

.product-highlights-btn {
  background: var(--fp-teal);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.25s;
  border: none;
  cursor: pointer;
}

.product-highlights-btn:hover {
  background: var(--fp-teal-dk);
  color: #fff !important;
  text-decoration: none;
}

/* ── CONTACT CTA ── */
.contact-cta {
  position: relative;
  background: url('/images/forcepoint/forcepoint-banner.jpeg') no-repeat center center / cover;
  padding: 80px 20px;
  text-align: center;
  margin: 50px 0 0;
  color: #fff;
}

.cta-overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 60px 20px;
  border-radius: 10px;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-subtitle {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.85);
}

.cta-btn {
  background: var(--fp-teal);
  color: #fff !important;
  padding: 14px 36px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.25s;
  border: none;
  cursor: pointer;
}

.cta-btn:hover {
  background: var(--fp-teal-dk);
  color: #fff !important;
  text-decoration: none;
}
