/* ============================================================
   C4 SOLUTIONS — SEO/AEO/GEO PAGE CSS
   File: seo-page.css
   Loads on: /seo-aeo-geo-for-msps/ only
   ============================================================ */

/* THREE DEFINITION CARDS — SEO / AEO / GEO */
.c4-seo-defs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 28px;
  border: 1px solid #e8e8e8;
}

.c4-seo-def {
  padding: 26px 20px;
  border-right: 1px solid #e8e8e8;
}

.c4-seo-def:last-child { border-right: none; }

.c4-seo-def-acronym {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  color: var(--c4-red);
  line-height: 1;
  margin-bottom: 4px;
}

.c4-seo-def-name {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c4-gray-mid);
  margin-bottom: 12px;
}

.c4-seo-def-body {
  font-size: 12px;
  color: var(--c4-gray-dark);
  line-height: 1.65;
}

@media (max-width: 600px) {
  .c4-seo-defs { grid-template-columns: 1fr; }
  .c4-seo-def { border-right: none; border-bottom: 1px solid #e8e8e8; }
  .c4-seo-def:last-child { border-bottom: none; }
}

/* SEARCH ENGINE SERVICES LIST */
.c4-seo-services {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 28px;
  border: 1px solid #e8e8e8;
}

.c4-seo-service {
  display: grid;
  grid-template-columns: 180px 1fr;
  border-bottom: 1px solid #e8e8e8;
}

.c4-seo-service:last-child { border-bottom: none; }

.c4-seo-service-label {
  background: var(--c4-bg-light);
  padding: 18px 16px;
  border-right: 1px solid #e8e8e8;
  display: flex;
  align-items: center;
}

.c4-seo-service-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--c4-black);
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.c4-seo-service-name em {
  display: block;
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c4-red);
  font-style: normal;
  margin-bottom: 2px;
}

.c4-seo-service-body {
  padding: 18px 20px;
  font-size: 12px;
  color: var(--c4-gray-dark);
  line-height: 1.65;
  display: flex;
  align-items: center;
}

@media (max-width: 600px) {
  .c4-seo-service { grid-template-columns: 1fr; }
  .c4-seo-service-label { border-right: none; border-bottom: 1px solid #e8e8e8; }
}

/* STAT CALLOUT — zero-click stat */
.c4-stat-callout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin: 24px 0;
  border: 1px solid #e8e8e8;
}

.c4-stat-callout-item {
  padding: 24px 22px;
  border-right: 1px solid #e8e8e8;
  text-align: center;
}

.c4-stat-callout-item:last-child { border-right: none; }

.c4-stat-callout-val {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  color: var(--c4-red);
  line-height: 1;
  margin-bottom: 6px;
}

.c4-stat-callout-lbl {
  font-size: 12px;
  color: var(--c4-gray-dark);
  line-height: 1.55;
}

/* FAQ SECTION */
.c4-faq {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 28px;
  border: 1px solid #e8e8e8;
}

.c4-faq-item {
  border-bottom: 1px solid #e8e8e8;
  padding: 0;
}

.c4-faq-item:last-child { border-bottom: none; }

.c4-faq-q {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--c4-black);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fafafa;
  border-bottom: 1px solid #e8e8e8;
  letter-spacing: 0.01em;
}

.c4-faq-q::before {
  content: '«';
  color: var(--c4-red);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 16px;
  flex-shrink: 0;
}

.faq-answer {
  padding: 18px 20px 18px 46px;
  font-size: 13px;
  color: var(--c4-gray-dark);
  line-height: 1.7;
}

/* ============================================================
   PRICING BAND — $4,000/month callout
   ============================================================ */
.c4-pricing-band {
  background: var(--c4-bg-dark);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.c4-pricing-band::after {
  content: '«';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 260px;
  font-weight: 900;
  color: rgba(200,16,46,0.12);
  line-height: 1;
  pointer-events: none;
}

.c4-pricing-inner {
  display: grid;
  grid-template-columns: auto 1px 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
}

.c4-pricing-price {
  text-align: center;
  flex-shrink: 0;
}

.c4-pricing-val {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 900;
  color: var(--c4-white);
  line-height: 1;
}

.c4-pricing-val em {
  color: var(--c4-red);
  font-style: normal;
}

.c4-pricing-unit {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: 6px;
  white-space: nowrap;
}

.c4-pricing-divider {
  background: rgba(255,255,255,0.1);
  height: 80px;
  align-self: center;
}

.c4-pricing-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--c4-white);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.c4-pricing-body {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .c4-pricing-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .c4-pricing-divider { display: none; }
}

/* VERIFY FLAG — editorial note */
.c4-verify-flag {
  background: #fffbeb;
  border: 1px solid #f59e0b;
  border-left: 4px solid #f59e0b;
  padding: 10px 16px;
  font-size: 11px;
  color: #92400e;
  font-weight: 600;
  margin-top: 14px;
}
