
/* ============================================
   VinFast Limo Green - SEO Content Styles
   MONOCHROME PALETTE (Black / White / Gray)
   ============================================ */

/* === GLOBAL === */
.pillar-section,
.satellite-section {
  margin-bottom: 3rem;
  padding: 2rem 0;
}
.pillar-section h2,
.satellite-section h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid #333;
  line-height: 1.3;
}
.pillar-section h3,
.satellite-section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #222;
  margin: 1.5rem 0 0.75rem;
}

/* === HERO SECTION === */
.pillar-hero {
  background: linear-gradient(135deg, #111 0%, #2a2a2a 50%, #1a1a1a 100%);
  color: #fff;
  padding: 3rem 2rem;
  border-radius: 16px;
  margin-bottom: 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pillar-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.pillar-hero__badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1rem;
  border: 1px solid rgba(255,255,255,0.2);
}
.pillar-hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}
.pillar-hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}
@media (max-width: 600px) {
  .pillar-hero__stats { grid-template-columns: repeat(2, 1fr); }
}
.stat-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
}
.stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #e0e0e0;
}
.stat-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}
.pillar-hero__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none !important;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}
.btn--primary {
  background: #222;
  color: #fff !important;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.btn--primary:hover {
  background: #000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
.btn--outline {
  background: transparent;
  color: #fff !important;
  border: 2px solid rgba(255,255,255,0.4);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}
.btn--full {
  width: 100%;
  text-align: center;
  padding: 14px;
  font-size: 1.05rem;
}

/* === PRICE TABLE === */
.price-table {
  background: #fafafa;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid #e0e0e0;
}
.price-table table {
  width: 100%;
  border-collapse: collapse;
}
.price-table th {
  background: #222;
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 600;
}
.price-table th:first-child { border-radius: 8px 0 0 0; }
.price-table th:last-child { border-radius: 0 8px 0 0; }
.price-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #eee;
  font-size: 0.9rem;
}
.price-table td strong { color: #111; font-size: 1rem; font-weight: 800; }
.table-note {
  font-size: 0.8rem;
  color: #888;
  margin-top: 8px;
  font-style: italic;
}

/* === PROMO CARDS === */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .promo-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .promo-grid { grid-template-columns: 1fr; }
}
.promo-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.promo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}
.promo-icon { font-size: 2rem; display: block; margin-bottom: 0.5rem; }
.promo-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
}
.promo-card p { font-size: 0.8rem; color: #777; margin: 0; }

/* === SPECS GRID === */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .specs-grid { grid-template-columns: 1fr; }
}
.specs-group {
  background: #fafafa;
  border-radius: 12px;
  padding: 1.25rem;
  border: 1px solid #e0e0e0;
}
.specs-group h3 {
  font-size: 1rem;
  color: #333;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #ddd;
}
.specs-group table { width: 100%; border-collapse: collapse; }
.specs-group td {
  padding: 8px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid #f0f0f0;
}
.specs-group td:first-child { color: #777; width: 50%; }
.specs-group td:last-child { font-weight: 600; color: #1a1a1a; }

/* === REASONS GRID === */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}
.reason-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 1.5rem;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.reason-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}
.reason-number {
  font-size: 2rem;
  font-weight: 800;
  color: #ccc;
  opacity: 0.4;
  position: absolute;
  top: 12px;
  right: 16px;
}
.reason-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.reason-card p { font-size: 0.85rem; color: #555; line-height: 1.6; }
.reason-card a {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #333;
  font-weight: 600;
}

/* === AUDIENCE GRID === */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 768px) {
  .audience-grid { grid-template-columns: 1fr; }
}
.audience-card {
  background: linear-gradient(135deg, #fafafa 0%, #fff 100%);
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 1.5rem;
}
.audience-card h3 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}
.audience-card ul {
  list-style: none;
  padding: 0;
}
.audience-card li {
  padding: 4px 0;
  font-size: 0.85rem;
  color: #555;
  padding-left: 1.2em;
  position: relative;
}
.audience-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #444;
  font-weight: 700;
}
.audience-card a { font-size: 0.85rem; color: #333; font-weight: 600; }

/* === COMPARE TABLE === */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
}
.compare-table th {
  padding: 14px 16px;
  background: #f5f5f5;
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
  text-align: center;
}
.compare-table th.highlight {
  background: #222;
  color: #fff;
}
.compare-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.85rem;
  text-align: center;
}
.compare-table td:first-child { text-align: left; font-weight: 500; }
.compare-table td.highlight {
  background: rgba(0,0,0,0.03);
  font-weight: 600;
}

/* === FAQ === */
.faq-list { margin-top: 1rem; }
.faq-item {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  margin-bottom: 0.75rem;
  padding: 1.25rem 1.5rem;
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: #333; }
.faq-item h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  cursor: pointer;
}
.faq-item h3::before {
  content: '❓ ';
}
.faq-item p {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.6;
}

/* === CHARGING STATIONS === */
.charging-stations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin: 1rem 0;
}
.station-card {
  background: linear-gradient(135deg, #f8f8f8 0%, #fff 100%);
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 1.25rem;
}
.station-card h4 {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 0.5rem;
}
.station-card p {
  font-size: 0.8rem;
  color: #666;
  margin: 4px 0;
}

/* === LEAD FORM === */
.pillar-cta {
  background: linear-gradient(135deg, #111 0%, #2a2a2a 100%);
  color: #fff;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
}
.pillar-cta h2 {
  color: #fff !important;
  border-bottom-color: rgba(255,255,255,0.2) !important;
}
.pillar-cta p { color: rgba(255,255,255,0.8); }
.lead-form {
  max-width: 600px;
  margin: 1.5rem auto 0;
  text-align: left;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (max-width: 600px) {
  .form-grid { grid-template-columns: 1fr; }
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: rgba(255,255,255,0.75);
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
}
.form-group input::placeholder { color: rgba(255,255,255,0.35); }
.form-group select option { color: #333; background: #fff; }
.form-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.75rem;
  text-align: center;
}

/* === SATELLITE SPECIFIC === */
.satellite-intro {
  background: linear-gradient(135deg, #f5f5f5 0%, #fff 100%);
  border-left: 4px solid #333;
  padding: 1.25rem 1.5rem;
  border-radius: 0 12px 12px 0;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  line-height: 1.7;
}
.satellite-cta {
  background: linear-gradient(135deg, #222 0%, #444 100%);
  color: #fff;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  margin: 2rem 0;
}
.satellite-cta p { color: rgba(255,255,255,0.85); }
.satellite-footer-link {
  text-align: center;
  padding: 1rem;
  font-size: 0.85rem;
}

/* === COST TABLE (Satellites) === */
.cost-table, .installment-table, .roi-table, .compare-full-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  margin: 1rem 0;
}
.cost-table th, .installment-table th, .roi-table th, .compare-full-table th {
  background: #222;
  color: #fff;
  padding: 10px 14px;
  font-size: 0.8rem;
  text-align: left;
}
.cost-table td, .installment-table td, .roi-table td, .compare-full-table td {
  padding: 10px 14px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.85rem;
}
.cost-table tr:last-child td,
.roi-table tr:last-child td {
  font-weight: 700;
  background: #f5f5f5;
}

/* === HIGHLIGHT BOX === */
.highlight-box, .savings-box, .result-box, .verdict-box, .roi-highlight {
  background: linear-gradient(135deg, #f5f5f5 0%, #eee 100%);
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  text-align: center;
}
.highlight-box h3, .savings-box h3, .result-box h3, .verdict-box h3 {
  color: #222;
  margin-bottom: 0.5rem;
}
.big-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #111;
  display: block;
  margin: 0.5rem 0;
}

/* === SCORE CARD (Review article) === */
.score-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.75rem;
  margin: 1rem 0;
}
.score-item {
  background: #fafafa;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
}
.score-item .score {
  font-size: 1.5rem;
  font-weight: 800;
  color: #222;
}
.score-item .label {
  font-size: 0.75rem;
  color: #888;
  margin-top: 4px;
}

/* === PROS/CONS === */
.pros-cons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1rem 0;
}
@media (max-width: 600px) {
  .pros-cons { grid-template-columns: 1fr; }
}
.pros, .cons {
  border-radius: 12px;
  padding: 1.25rem;
}
.pros {
  background: #f5f5f5;
  border: 1px solid #ddd;
}
.cons {
  background: #fafafa;
  border: 1px solid #e0e0e0;
}
.pros h4 { color: #333; }
.cons h4 { color: #555; }
.pros li, .cons li {
  padding: 4px 0;
  font-size: 0.85rem;
  color: #555;
}

/* === BREADCRUMB STYLE LINK === */
.breadcrumb-link {
  font-size: 0.8rem;
  color: #555;
  margin-bottom: 1rem;
  display: block;
}

/* ============================================
   GLOBAL POST-CONTENT STYLES
   Auto-style satellite articles without class changes
   ============================================ */

/* === Target WordPress post content area === */
.entry-content,
.post-content,
article .content,
.wp-block-post-content,
.single-post .content-area article,
article {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #2d2d2d;
}

/* === Post content intro paragraph === */
.entry-content > p:first-of-type,
article > p.intro,
article > p:first-of-type {
  background: linear-gradient(135deg, #f5f5f5 0%, #fafafa 100%);
  border-left: 4px solid #333;
  padding: 1.25rem 1.5rem;
  border-radius: 0 12px 12px 0;
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.8;
  color: #2d2d2d;
}

/* === ALL TABLES in post content → Auto-styled === */
.entry-content table,
article table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  margin: 1.5rem 0;
  font-size: 0.88rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.entry-content table thead th,
article table thead th {
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
  color: #fff;
  padding: 12px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  text-align: left;
  letter-spacing: 0.3px;
  border: none;
}

.entry-content table thead th:first-child,
article table thead th:first-child {
  border-radius: 12px 0 0 0;
}
.entry-content table thead th:last-child,
article table thead th:last-child {
  border-radius: 0 12px 0 0;
}

.entry-content table tbody td,
article table tbody td {
  padding: 11px 16px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.88rem;
  color: #333;
  transition: background 0.15s;
}

.entry-content table tbody tr:nth-child(even),
article table tbody tr:nth-child(even) {
  background: #f8f8f8;
}

.entry-content table tbody tr:hover,
article table tbody tr:hover {
  background: #f0f0f0;
}

/* Strong inside td = bold dark for emphasis */
.entry-content table tbody td strong,
article table tbody td strong {
  color: #111;
  font-weight: 800;
}

/* Total row (last row or .total-row) */
.entry-content table tbody tr:last-child td,
article table tbody tr.total-row td,
.entry-content table tbody tr.total-row td {
  font-weight: 700;
  background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
  color: #111;
  border-bottom: none;
}
.entry-content table tbody tr.total-row td strong,
article table tbody tr.total-row td strong {
  color: #000;
  font-size: 1rem;
}

/* === TABLE NOTE === */
.entry-content .table-note,
article .table-note {
  font-size: 0.8rem;
  color: #999;
  font-style: italic;
  margin-top: -0.5rem;
  margin-bottom: 1.5rem;
}

/* === H2 inside post === */
.entry-content h2,
article > h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 3px solid #333;
  line-height: 1.3;
}

/* === H3 inside post === */
.entry-content h3,
article > h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #2a2a2a;
  margin: 1.5rem 0 0.75rem;
}

/* === OL / UL lists === */
.entry-content ol,
.entry-content ul,
article > ol,
article > ul {
  padding-left: 1.5rem;
  margin: 1rem 0 1.5rem;
}
.entry-content li,
article > ol li,
article > ul li {
  padding: 6px 0;
  font-size: 0.92rem;
  line-height: 1.7;
  color: #444;
}
.entry-content li strong,
article li strong {
  color: #1a1a1a;
}

/* === CTA BOX (already has class in satellite HTML) === */
.cta-box {
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
  color: #fff;
  padding: 2rem 2rem;
  border-radius: 16px;
  text-align: center;
  margin: 2.5rem 0;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
.cta-box h3 {
  color: #fff !important;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  border-bottom: none !important;
}
.cta-box p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}
.cta-box .btn--primary {
  background: #fff;
  color: #1a1a1a !important;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
.cta-box .btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

/* === CONCLUSION GRID (already has class in HTML) === */
.conclusion-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 1.5rem 0;
}
@media (max-width: 768px) {
  .conclusion-grid { grid-template-columns: 1fr; }
}
.conclusion-card {
  background: linear-gradient(135deg, #fafafa 0%, #fff 100%);
  border: 1px solid #e0e0e0;
  border-radius: 14px;
  padding: 1.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.conclusion-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}
.conclusion-card:first-child {
  border-color: #333;
  background: linear-gradient(135deg, #f0f0f0 0%, #fafafa 100%);
}
.conclusion-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #1a1a1a;
  border-bottom: none !important;
}
.conclusion-card:first-child h3 {
  color: #111;
}
.conclusion-card ul {
  list-style: none !important;
  padding-left: 0 !important;
}
.conclusion-card li {
  padding: 5px 0 !important;
  padding-left: 1.4em !important;
  position: relative;
  font-size: 0.88rem;
  color: #555;
}
.conclusion-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #444;
  font-weight: 700;
}
.conclusion-card:first-child li::before {
  color: #222;
}

/* === SIDEBAR NAV LINKS (📌 and 👉 paragraphs) === */
.entry-content > p:has(a),
article > p:has(a) {
  margin: 0.75rem 0;
}

/* === Internal links styling === */
.entry-content a,
article a {
  color: #333;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid #ccc;
  transition: color 0.2s, border-color 0.2s;
}
.entry-content a:hover,
article a:hover {
  color: #000;
  border-bottom-color: #000;
}

/* === SMOOTH ALL === */
table { font-size: 0.85rem; }
th, td { vertical-align: middle; }
