/* ═══ Generic Page (AI, Why VicOne, etc.) ═══ */
.gp-page { color: #333; font-family: 'Ubuntu', 'Open Sans', sans-serif; line-height: 1.6; }

/* ── mark tag (GenAI highlight) ── */
.gp-page mark {
  background: #dc256891;
  color: #282727;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding-left: 5px;
  padding-right: 5px;
}

.pg-hero mark {
  background: #dc256891;
  color: #fff;
  border: 1px solid transparent;
  border-radius: 10px;
  padding-left: 5px;
  padding-right: 5px;
}

/* ── Pricing/Roadblock Cards (from inline HTML) ── */
.pricing-plans-wrapper.intro-type {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 30px 0 50px;
}

.pricing-plan-item.why-vicone-subcard {
  background: #fff;
  padding: 30px 20px;
  border-radius: 8px;
  text-align: center;
}

.pricing-plan-item.why-vicone-subcard img {
  max-width: 200px;
  height: auto;
  margin: 0 auto;
  display: block;
}

.pricing-plan-item.why-vicone-subcard h3 {
  font-size: 27px;
  font-weight: 900;
  margin: 20px 0 10px;
  color: #212121;
}

.pricing-plan-item.why-vicone-subcard p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

/* ── Bento Grid (Achieve Peak Efficiency) ── */
.flex-horizontal-center-bento {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 20px auto;
  max-width: 1500px;
  width: 80%;
}

.bento-sq {
  width: 32%;
  min-width: 280px;
  height: 250px;
  position: relative;
  overflow: hidden;
  background: #1a212b;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.bento-sq:hover { transform: scale(0.95); }

.bento-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #1a212b;
  opacity: 0.6;
  transition: all 0.3s ease-in-out;
}

.bento-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bento-sq:hover .bento-bg { opacity: 1; }
.bento-sq:hover .bento-bg img { filter: blur(3px); }

.bento-info {
  position: relative;
  z-index: 1;
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-main { width: 85%; }

p.bento-small-head {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  margin: 0 0 5px;
}

h4.bento-head-title {
  font-weight: 900;
  font-size: 22px;
  line-height: 1.5em;
  color: #fff;
  margin: 0;
}

p.bento-head-desc {
  color: #fff;
  line-height: 1.3em;
  margin: 5px 0 0;
}

.bento-cta {
  text-align: right;
  display: flex;
  justify-content: flex-end;
}

.bento-cta-link {
  color: #fff;
  text-transform: uppercase;
  font-weight: 400;
}

/* ── Testimonial Quote ── */
.home-testimonials-quote {
  font-size: 20px;
  font-style: italic;
  line-height: 1.6;
  color: #444;
}

.gp-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.gp-container-wide { max-width: 1500px; width: 80%; }
.gp-section { padding: 80px 0; }
.gp-alt-bg { background: #f5f8fc; }
.gp-section-header { text-align: center; margin-bottom: 50px; }
.gp-section-header h2 { font-size: 32px; font-weight: 700; line-height: 1.3; color: #212121; margin: 0 0 12px; }
.gp-center-text { max-width: 900px; margin: 0 auto; text-align: center; }
.gp-center-text p { font-size: 16px; line-height: 1.8; color: #555; margin-bottom: 15px; }

.gp-section-image { max-width: 1000px; margin: 0 auto 30px; text-align: center; }
.gp-section-image img { width: 100%; height: auto; border-radius: 8px; }

/* Features */
.gp-features { background: #fff; }
.gp-workflow { display: flex; gap: 40px; align-items: center; margin-bottom: 50px; }
.gp-workflow-reverse { flex-direction: row-reverse; }
.gp-workflow-media { flex: 1; min-width: 0; }
.gp-workflow-media img { width: 100%; display: block; border-radius: 6px; object-fit: cover; }
.gp-workflow-text { flex: 1; min-width: 0; }
.gp-workflow-text h3 { font-size: 24px; font-weight: 700; color: #212121; margin: 0 0 12px; }
.gp-workflow-text p { font-size: 15px; line-height: 1.7; color: #444; margin: 0; }
.gp-workflow-text a { color: #ff0037; }

/* Stats Cards */
.gp-stats { background: #eef2f7; }
.gp-stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.gp-stat-card { background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,.06); transition: transform .2s; }
.gp-stat-card:hover { transform: translateY(-4px); }
.gp-stat-thumb { position: relative; height: 220px; overflow: hidden; }
.gp-stat-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gp-stat-gradient { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 70%); }
.gp-stat-title { position: absolute; bottom: 16px; left: 16px; right: 16px; color: #fff; font-size: 16px; line-height: 1.3; z-index: 1; }
.gp-stat-title strong { font-size: 32px; font-weight: 800; display: block; margin-bottom: 2px; }
.gp-stat-card > p { padding: 20px 24px; font-size: 15px; line-height: 1.65; color: #636363; margin: 0; }

/* ── Security Sub-navigation ── */
.sec-subnav {
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
}

.sec-subnav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: center;
  gap: 0;
}

.sec-subnav-item {
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 600;
  color: #555;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.sec-subnav-item:hover {
  color: #e9001e;
  text-decoration: none;
  border-bottom-color: #e9001e;
}

.sec-subnav-active {
  color: #e9001e;
  border-bottom-color: #e9001e;
}

/* ── Policy Page ── */
.policy-body {
  padding: 60px 0 80px;
  background: #fff;
}

.policy-container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
  font-size: 16px;
  line-height: 1.8;
  color: #636363;
}

.policy-container h2 {
  font-size: 22px;
  font-weight: 700;
  color: #212121;
  margin: 48px 0 16px;
}

.policy-container h2:first-child {
  margin-top: 0;
}

.policy-container h3 {
  font-size: 17px;
  font-weight: 700;
  color: #212121;
  margin: 24px 0 8px;
}

.policy-container p {
  margin: 0 0 16px;
}

.policy-container ul {
  padding-left: 20px;
  margin: 0 0 20px;
}

.policy-container li {
  margin-bottom: 6px;
}

.policy-container a {
  color: #ff0037;
  text-decoration: none;
  font-weight: 600;
}

.policy-container a:hover {
  text-decoration: underline;
}

.policy-container strong {
  color: #212121;
}

/* Callout block */
.policy-callout {
  background: #f5f8fc;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 32px;
  margin: 28px 0;
  text-align: center;
}

.policy-callout-title {
  font-size: 15px;
  color: #636363;
  margin: 0 0 12px !important;
}

.policy-callout-email {
  font-size: 22px;
  font-weight: 700;
  color: #ff0037;
  display: block;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.policy-callout-note {
  font-size: 13px;
  color: #999;
  font-style: italic;
  margin: 0 !important;
}

/* Included / Excluded Domains side-by-side */
.policy-domains {
  display: flex;
  gap: 32px;
  margin: 48px 0 20px;
}

.policy-domains-col {
  flex: 1;
  min-width: 0;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 28px 24px;
}

.policy-domains-col h2 {
  margin-top: 0 !important;
}

/* ── PGP Page ── */
.pgp-info-row {
  display: flex;
  gap: 24px;
  margin: 32px 0;
}

.pgp-info-card {
  flex: 1;
  min-width: 0;
  border: 2px solid #1e3a5f;
  border-radius: 8px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pgp-info-label {
  font-size: 17px;
  font-weight: 700;
  color: #212121;
}

.pgp-info-value {
  font-size: 20px;
  font-weight: 700;
  color: #212121;
  word-break: break-all;
  text-decoration: none;
}

a.pgp-info-value:hover {
  text-decoration: underline;
}

.pgp-key-block {
  background: #f5f8fc;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 24px;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: auto;
  white-space: pre-wrap;
  word-break: break-all;
  color: #444;
  font-family: 'Courier New', Courier, monospace;
}

/* ── Advisory Page ── */
.advisory-section {
  margin: 0 -120px 32px;
}

.advisory-table-wrap {
  background: #0f172a;
  border-radius: 12px;
  margin-top: 16px;
  max-height: 70vh;
  overflow: auto;
}

.advisory-table-wrap::-webkit-scrollbar { width: 6px; }
.advisory-table-wrap::-webkit-scrollbar-track { background: #0f172a; }
.advisory-table-wrap::-webkit-scrollbar-thumb { background: #334155; border-radius: 3px; }
.advisory-table-wrap::-webkit-scrollbar-thumb:hover { background: #475569; }

.advisory-table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #1e293b;
}

@media (max-width: 1060px) {
  .advisory-section { margin-left: 0; margin-right: 0; }
}

.advisory-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  color: #cbd5e1;
}

.advisory-table thead th {
  background: #1e293b;
  color: #38bdf8;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 14px 18px;
  text-align: left;
  white-space: nowrap;
}

.advisory-table thead th:first-child { border-radius: 8px 0 0 0; }
.advisory-table thead th:last-child { border-radius: 0 8px 0 0; }

.advisory-table tbody td {
  padding: 14px 18px;
  border-bottom: 1px solid #1e293b;
  white-space: nowrap;
}

.advisory-table tbody tr:last-child td { border-bottom: none; }

.advisory-empty {
  text-align: center !important;
  padding: 48px 18px !important;
  color: #64748b !important;
  font-size: 15px;
}

.advisory-table th.sortable {
  cursor: pointer;
  user-select: none;
}

.advisory-table th.sortable:hover {
  color: #fff;
  background: #334155;
}

.advisory-table th.sortable .sort-icon::after {
  content: ' \25B2\25BC';
  font-size: 10px;
  opacity: 0.4;
  letter-spacing: -3px;
}

.advisory-table th.sort-asc .sort-icon::after {
  content: ' \25B2';
  font-size: 12px;
  opacity: 1;
  letter-spacing: 0;
}

.advisory-table th.sort-desc .sort-icon::after {
  content: ' \25BC';
  font-size: 12px;
  opacity: 1;
  letter-spacing: 0;
}

.advisory-table a {
  color: #38bdf8;
  text-decoration: none;
  font-weight: 600;
}

.advisory-table a:hover {
  text-decoration: underline;
}

/* CVSS severity badges */
.cvss-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.cvss-critical { background: #ef4444; color: #fff; }
.cvss-high { background: #f59e0b; color: #fff; }
.cvss-medium { background: #facc15; color: #212121; }
.cvss-low { background: #22c55e; color: #fff; }

/* ── Advisory Detail Page ── */
.adv-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.adv-info-wide { grid-column: span 2; }

.adv-info-item {
  background: #f5f8fc;
  border-radius: 8px;
  padding: 24px;
}

.adv-info-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #636363;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.adv-info-value {
  font-size: 16px;
  font-weight: 600;
  color: #212121;
}

.adv-mono {
  font-family: 'Courier New', Courier, monospace;
  font-size: 14px;
  font-weight: 600;
  color: #212121;
  word-break: break-all;
}

@media (max-width: 480px) {
  .adv-info-grid { grid-template-columns: 1fr; }
  .adv-info-wide { grid-column: span 1; }
}

/* Response timeline labels */
.policy-label {
  color: #ff0037;
  font-weight: 700;
  text-decoration: underline;
}

/* Table */
.policy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 32px;
  font-size: 14px;
}

.policy-table th {
  background: #212121;
  color: #fff;
  font-weight: 600;
  padding: 12px 16px;
  text-align: left;
}

.policy-table th:first-child {
  border-radius: 8px 0 0 0;
}

.policy-table th:last-child {
  border-radius: 0 8px 0 0;
}

.policy-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #e8ecf0;
  color: #636363;
}

.policy-table tr:nth-child(even) {
  background: #f5f8fc;
}

.policy-table td:first-child {
  font-weight: 800;
  color: #212121;
  font-size: 16px;
  width: 60px;
  text-align: center;
}

.policy-table td:nth-child(2) {
  font-weight: 600;
  color: #212121;
}

@media (max-width: 1024px) {
  .gp-container-wide { width: 90%; }
  .gp-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .gp-section { padding: 50px 0; }
  .gp-hero-content h1 { font-size: 2rem; }
  .gp-section-header h2 { font-size: 24px; }
  .gp-workflow { flex-direction: column !important; gap: 24px; }
  .gp-stats-grid { grid-template-columns: 1fr; }
  .gp-container-wide { width: 92%; }
  .policy-flow { flex-direction: column; }
  .policy-domains { flex-direction: column; }
  .pgp-info-row { flex-direction: column; }
  .policy-container h2 { font-size: 20px; }
  .pricing-plans-wrapper.intro-type { grid-template-columns: 1fr; }
  .bento-sq { width: 100%; }
  .flex-horizontal-center-bento { width: 92%; }
}
