/* Apolo SEO Pages - Shared CSS
   Tokens: ink #242424 | accent #44BBFF | bg #F5F7F8 | surface #fff | secondary #767676
   Font: Satoshi (site default via theme)
*/

/* ============================================================
   BASE LAYOUT
   ============================================================ */
.apolo-seo-page {
  background: #F5F7F8;
  font-family: 'Satoshi', Arial, Helvetica, sans-serif;
  color: #767676;
  font-size: 16px;
  line-height: 1.65;
}

.apolo-seo-page * { box-sizing: border-box; }

.apolo-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   HERO BANNER
   ============================================================ */
.apolo-hero {
  background: #242424;
  color: #fff;
  padding: 52px 0 44px;
}

.apolo-hero__eyebrow {
  display: inline-block;
  background: #44BBFF;
  color: #242424;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 3px;
  margin-bottom: 16px;
}

.apolo-hero__h1 {
  font-family: 'Satoshi', Arial, Helvetica, sans-serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 16px;
  max-width: 680px;
}

.apolo-hero__sub {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  max-width: 580px;
  margin: 0 0 28px;
  line-height: 1.6;
}

.apolo-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

.apolo-hero__meta strong {
  color: rgba(255,255,255,0.85);
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.apolo-breadcrumb {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 11px 0;
  font-size: 13px;
  color: #999;
}

.apolo-breadcrumb a {
  color: #767676;
  text-decoration: none;
}

.apolo-breadcrumb a:hover {
  color: #242424;
}

.apolo-breadcrumb span {
  margin: 0 6px;
  color: #ccc;
}

/* ============================================================
   INTRO SECTION
   ============================================================ */
.apolo-intro {
  background: #fff;
  padding: 44px 0;
  border-bottom: 1px solid #eee;
}

.apolo-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 768px) {
  .apolo-intro__grid { grid-template-columns: 1fr; gap: 24px; }
}

.apolo-intro h2 {
  font-family: 'Satoshi', Arial, Helvetica, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #242424;
  margin: 0 0 14px;
  line-height: 1.25;
}

.apolo-intro p {
  color: #767676;
  margin: 0 0 14px;
  line-height: 1.65;
}

.apolo-intro ul {
  margin: 0;
  padding-left: 20px;
  color: #767676;
}

.apolo-intro ul li {
  margin-bottom: 6px;
  line-height: 1.55;
}

/* ============================================================
   SECTION TITLES
   ============================================================ */
.apolo-section {
  padding: 52px 0;
}

.apolo-section--white { background: #fff; }
.apolo-section--gray  { background: #F5F7F8; }

.apolo-section__header {
  margin-bottom: 32px;
}

.apolo-section__title {
  font-family: 'Satoshi', Arial, Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #242424;
  margin: 0 0 8px;
  line-height: 1.2;
}

.apolo-section__subtitle {
  font-size: 15px;
  color: #767676;
  margin: 0;
  max-width: 620px;
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.apolo-table-wrap {
  overflow-x: auto;
  border-radius: 4px;
  border: 1px solid #eee;
  background: #fff;
}

.apolo-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 540px;
}

.apolo-table thead th {
  background: #F5F7F8;
  color: #242424;
  font-weight: 700;
  text-align: left;
  padding: 13px 16px;
  border-bottom: 2px solid #ddd;
  font-family: 'Satoshi', Arial, Helvetica, sans-serif;
  white-space: nowrap;
}

.apolo-table thead th:first-child {
  border-left: 3px solid #44BBFF;
}

.apolo-table tbody tr {
  border-bottom: 1px solid #f0f2f4;
  transition: background 0.15s;
}

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

.apolo-table tbody tr:hover { background: #fafbfc; }

.apolo-table tbody td {
  padding: 12px 16px;
  color: #767676;
  vertical-align: top;
}

.apolo-table tbody td:first-child {
  color: #242424;
  font-weight: 600;
  font-size: 13px;
}

.apolo-table .check { color: #2aa85c; font-weight: 700; }
.apolo-table .cross  { color: #cc4444; }
.apolo-table .badge-rec {
  display: inline-block;
  background: #44BBFF;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ============================================================
   PRODUCT CARDS GRID
   ============================================================ */
.apolo-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

@media (max-width: 480px) {
  .apolo-products-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
}

.apolo-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.apolo-card:hover {
  border-color: #44BBFF;
  box-shadow: 0 4px 16px rgba(68,187,255,0.10);
}

.apolo-card__img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #F5F7F8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.apolo-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.apolo-card__body {
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.apolo-card__name {
  font-size: 14px;
  font-weight: 600;
  color: #242424;
  line-height: 1.35;
  margin: 0 0 8px;
  font-family: 'Satoshi', Arial, Helvetica, sans-serif;
}

.apolo-card__desc {
  font-size: 13px;
  color: #999;
  line-height: 1.5;
  margin: 0 0 12px;
  flex: 1;
}

.apolo-card__price {
  font-size: 16px;
  font-weight: 700;
  color: #242424;
  margin: 0 0 12px;
}

.apolo-card__price small {
  font-size: 12px;
  font-weight: 400;
  color: #999;
  margin-left: 4px;
}

.apolo-btn {
  display: block;
  background: #242424;
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  text-transform: capitalize;
  transition: background 0.15s;
  font-family: 'Satoshi', Arial, Helvetica, sans-serif;
}

.apolo-btn:hover {
  background: #44BBFF;
  color: #fff;
  text-decoration: none;
}

.apolo-btn--outline {
  background: transparent;
  border: 1.5px solid #242424;
  color: #242424;
}

.apolo-btn--outline:hover {
  background: #242424;
  color: #fff;
}

/* ============================================================
   INFO BOXES / CALLOUTS
   ============================================================ */
.apolo-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.apolo-info-box {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 4px;
  padding: 20px 20px 22px;
  border-top: 3px solid #44BBFF;
}

.apolo-info-box__icon {
  font-size: 28px;
  margin-bottom: 10px;
  display: block;
}

.apolo-info-box__title {
  font-size: 15px;
  font-weight: 700;
  color: #242424;
  margin: 0 0 8px;
  font-family: 'Satoshi', Arial, Helvetica, sans-serif;
}

.apolo-info-box__text {
  font-size: 14px;
  color: #767676;
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.apolo-faq {
  max-width: 800px;
}

.apolo-faq__item {
  border-bottom: 1px solid #eee;
}

.apolo-faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 17px 0;
  cursor: pointer;
  color: #242424;
  font-weight: 600;
  font-size: 15px;
  font-family: 'Satoshi', Arial, Helvetica, sans-serif;
  gap: 12px;
  user-select: none;
  list-style: none;
}

.apolo-faq__q::-webkit-details-marker { display: none; }

.apolo-faq__q::after {
  content: '+';
  font-size: 20px;
  color: #44BBFF;
  font-weight: 300;
  flex-shrink: 0;
  line-height: 1;
}

details[open] .apolo-faq__q::after { content: '-'; }

.apolo-faq__a {
  padding: 0 0 18px;
  color: #767676;
  font-size: 14px;
  line-height: 1.65;
}

.apolo-faq__a p { margin: 0 0 10px; }
.apolo-faq__a p:last-child { margin: 0; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.apolo-cta-band {
  background: #242424;
  padding: 44px 0;
  text-align: center;
}

.apolo-cta-band__title {
  font-family: 'Satoshi', Arial, Helvetica, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
}

.apolo-cta-band__sub {
  color: rgba(255,255,255,0.65);
  font-size: 15px;
  margin: 0 0 24px;
}

.apolo-cta-band .apolo-btn {
  display: inline-block;
  background: #44BBFF;
  color: #fff;
  padding: 13px 32px;
  font-size: 15px;
}

.apolo-cta-band .apolo-btn:hover {
  background: #fff;
  color: #242424;
}

/* ============================================================
   STEP/GUIDE SECTION
   ============================================================ */
.apolo-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 20px;
  counter-reset: step;
}

.apolo-step {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 4px;
  padding: 22px 20px;
  position: relative;
}

.apolo-step__num {
  width: 36px;
  height: 36px;
  background: #44BBFF;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
  font-family: 'Satoshi', Arial, Helvetica, sans-serif;
}

.apolo-step__title {
  font-size: 15px;
  font-weight: 700;
  color: #242424;
  margin: 0 0 8px;
  font-family: 'Satoshi', Arial, Helvetica, sans-serif;
}

.apolo-step__text {
  font-size: 14px;
  color: #767676;
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   HIGHLIGHT STRIP
   ============================================================ */
.apolo-highlight {
  background: #44BBFF;
  padding: 20px 0;
}

.apolo-highlight__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.apolo-highlight__item {
  color: #242424;
  font-weight: 600;
  font-size: 14px;
  font-family: 'Satoshi', Arial, Helvetica, sans-serif;
}

.apolo-highlight__item strong {
  display: block;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2px;
}

/* ============================================================
   RESPONSIVE ADJUSTMENTS
   ============================================================ */
@media (max-width: 768px) {
  .apolo-hero { padding: 36px 0 30px; }
  .apolo-section { padding: 36px 0; }
  .apolo-hero__h1 { font-size: 24px; }
  .apolo-info-grid { grid-template-columns: 1fr 1fr; }
  .apolo-steps { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .apolo-info-grid { grid-template-columns: 1fr; }
  .apolo-steps { grid-template-columns: 1fr; }
  .apolo-highlight__inner { gap: 20px; }
}
