/* PAGE WRAPPER */
.page-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr minmax(0, 1200px) 1fr;
}
.ad-col {
  background: #1a1a1a;
}
.site-col {
  background: #f5f5f3;
  align-self: start;
}
.ad-banner-top {
  display: none;
}
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
/* PAGE HERO BANNER */
.page-hero {
  background: #111;
  padding: 40px 40px 36px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(238, 85, 51, 0.12) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #e53;
  margin-bottom: 10px;
}
.page-hero-title {
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  max-width: 600px;
}
/* PAGE CONTENT */
.page-content {
  max-width: 720px;
  padding: 32px 0 60px;
}
.page-title {
  display: none;
}
/* INTRO BLOCK */
.intro-block {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #ebebeb;
  padding: 28px 32px;
  margin-bottom: 20px;
}
.intro-block p {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
}
/* STATS ROW */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.stat-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #ebebeb;
  padding: 20px;
  text-align: center;
}
.stat-num {
  font-size: 28px;
  font-weight: 900;
  color: #e53;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 12px;
  color: #888;
  line-height: 1.4;
}
/* CONTACT BLOCK */
.contact-block {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #ebebeb;
  overflow: hidden;
}
.contact-head {
  background: #111;
  padding: 12px 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}
.contact-body {
  padding: 24px 32px;
  display: flex;
  gap: 32px;
  align-items: center;
}
.c8-logo {
  flex-shrink: 0;
}
.c8-logo img {
  height: 36px;
  width: auto;
  display: block;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-info p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}
.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f5f5f3;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #111;
  transition: background 0.15s;
}
.contact-email:hover {
  background: #ebebeb;
}
.contact-email svg {
  width: 16px;
  height: 16px;
  stroke: #e53;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
