/* ============================================
   PIZZA DELIVERY INSIGHTS HUB - Main Stylesheet
   Clean Editorial Design | White + Dark Gray + Red
   ============================================ */

/* ---- CSS Variables ---- */
:root {
  --red: #D72B2B;
  --red-dark: #B01E1E;
  --red-light: #F5E0E0;
  --dark: #1A1A1A;
  --dark-gray: #2D2D2D;
  --mid-gray: #555555;
  --light-gray: #F4F4F4;
  --border-gray: #E0E0E0;
  --white: #FFFFFF;
  --text: #333333;
  --text-light: #666666;
  --font-main: 'Georgia', serif;
  --font-ui: 'Segoe UI', Arial, sans-serif;
  --max-width: 1200px;
  --radius: 6px;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-hover: 0 6px 24px rgba(0,0,0,0.14);
  --transition: 0.25s ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-ui);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--red); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--red-dark); text-decoration: underline; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-main);
  color: var(--dark);
  line-height: 1.3;
}

p { margin-bottom: 1rem; color: var(--text); }

ul, ol { margin-left: 1.5rem; margin-bottom: 1rem; }
li { margin-bottom: 0.4rem; }

/* ---- Layout Utilities ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.section { padding: 72px 0; }
.section--alt { background: var(--light-gray); }
.section--dark { background: var(--dark); color: var(--white); }
.section--red { background: var(--red); color: var(--white); }

/* ---- Typography ---- */
.section-label {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark);
}

.section-title--white { color: var(--white); }

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.section-subtitle--white { color: rgba(255,255,255,0.8); }

.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ---- NAVIGATION ---- */
#main-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 3px solid var(--red);
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 38px;
  height: 38px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-name {
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
}

.nav-logo-tagline {
  font-size: 0.68rem;
  color: var(--red);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  gap: 0;
}

.nav-links li { margin: 0; }

.nav-links a {
  display: block;
  padding: 0 16px;
  height: 68px;
  line-height: 68px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-gray);
  text-decoration: none;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active { color: var(--red); background: var(--red-light); }

.nav-links .nav-cta a {
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius);
  margin-left: 8px;
  height: auto;
  line-height: normal;
  padding: 10px 20px;
}

.nav-links .nav-cta a:hover { background: var(--red-dark); color: var(--white); }

/* Dropdown */
.nav-dropdown { position: relative; }

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-top: 3px solid var(--red);
  box-shadow: var(--shadow-hover);
  min-width: 220px;
  list-style: none;
  margin: 0;
  padding: 8px 0;
  z-index: 999;
  border-radius: 0 0 var(--radius) var(--radius);
}

.nav-dropdown:hover .nav-dropdown-menu { display: block; }

.nav-dropdown-menu li a {
  height: auto;
  line-height: normal;
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 500;
  display: block;
}

/* Mobile Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---- HERO ---- */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, #3a0a0a 50%, var(--dark) 100%);
  color: var(--white);
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D72B2B' fill-opacity='0.07'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(215,43,43,0.2);
  border: 1px solid rgba(215,43,43,0.4);
  color: #FF8080;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.hero h1 span { color: var(--red); }

.hero-desc {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat-num {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--red);
  font-family: var(--font-main);
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  backdrop-filter: blur(8px);
  transition: transform var(--transition);
}

.hero-card:hover { transform: translateX(6px); }

.hero-card-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: rgba(215,43,43,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card-title {
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
  margin: 0;
}

.hero-card-text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
  line-height: 1.4;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(215,43,43,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
  text-decoration: none;
}

.btn-outline-red {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn-outline-red:hover {
  background: var(--red);
  color: var(--white);
  text-decoration: none;
}

.btn-sm { padding: 9px 18px; font-size: 0.85rem; }
.btn-lg { padding: 16px 34px; font-size: 1.05rem; }

/* ---- BREADCRUMB ---- */
.breadcrumb {
  background: var(--light-gray);
  border-bottom: 1px solid var(--border-gray);
  padding: 12px 0;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-light);
  align-items: center;
}

.breadcrumb li:not(:last-child)::after {
  content: '›';
  margin-left: 6px;
  color: var(--border-gray);
}

.breadcrumb a { color: var(--red); font-weight: 500; }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #2a0505 100%);
  color: var(--white);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(215,43,43,0.12);
  pointer-events: none;
}

.page-hero h1 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  max-width: 600px;
  margin: 0;
}

/* ---- CARDS ---- */
.card {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--light-gray);
}

.card-img-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--red-light) 0%, var(--light-gray) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.card-body { padding: 1.5rem; }

.card-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 0.5rem;
  display: block;
}

.card-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--dark);
  line-height: 1.35;
}

.card-title a { color: inherit; }
.card-title a:hover { color: var(--red); text-decoration: none; }

.card-text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.card-link {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.card-link::after { content: '→'; transition: transform var(--transition); }
.card-link:hover::after { transform: translateX(4px); }

/* ---- FEATURE GRID ---- */
.feature-item {
  text-align: center;
  padding: 2rem 1.5rem;
}

.feature-icon {
  width: 72px;
  height: 72px;
  background: var(--red-light);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.25rem;
  transition: background var(--transition), transform var(--transition);
}

.feature-item:hover .feature-icon {
  background: var(--red);
  transform: scale(1.08);
}

.feature-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.feature-item p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
}

/* ---- STEPS ---- */
.steps { counter-reset: step; }

.step-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 23px;
  top: 52px;
  bottom: -16px;
  width: 2px;
  background: var(--border-gray);
}

.step-num {
  counter-increment: step;
  width: 48px;
  height: 48px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
  font-family: var(--font-main);
}

.step-content h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.step-content p {
  font-size: 0.92rem;
  color: var(--text-light);
  margin: 0;
}

/* ---- BANNER / CTA ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  padding: 72px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '🍕';
  position: absolute;
  font-size: 200px;
  opacity: 0.05;
  left: -40px;
  top: -40px;
  transform: rotate(-20deg);
}

.cta-banner::after {
  content: '🍕';
  position: absolute;
  font-size: 200px;
  opacity: 0.05;
  right: -40px;
  bottom: -40px;
  transform: rotate(20deg);
}

.cta-banner h2 {
  font-size: 2.25rem;
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 540px;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 1;
}

.cta-banner .btn {
  position: relative;
  z-index: 1;
}

.btn-white {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--light-gray);
  color: var(--red-dark);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* ---- ARTICLE CONTENT ---- */
.article-body h2 {
  font-size: 1.7rem;
  margin: 2.5rem 0 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-gray);
}

.article-body h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }

.article-body h3 {
  font-size: 1.25rem;
  margin: 1.75rem 0 0.75rem;
  color: var(--red-dark);
}

.article-body p { font-size: 1.025rem; line-height: 1.85; margin-bottom: 1.25rem; }

.article-body ul, .article-body ol {
  margin: 0.5rem 0 1.5rem 1.75rem;
}

.article-body li { margin-bottom: 0.5rem; font-size: 1rem; line-height: 1.7; }

.article-body blockquote {
  border-left: 4px solid var(--red);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--red-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--dark-gray);
  font-size: 1.05rem;
}

/* ---- SIDEBAR ---- */
.layout-sidebar {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}

.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.sidebar-widget-title {
  background: var(--dark);
  color: var(--white);
  padding: 1rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font-main);
  margin: 0;
}

.sidebar-widget-body { padding: 1.25rem 1.5rem; }

.sidebar-link-list { list-style: none; margin: 0; padding: 0; }

.sidebar-link-list li {
  border-bottom: 1px solid var(--border-gray);
  margin: 0;
}

.sidebar-link-list li:last-child { border-bottom: none; }

.sidebar-link-list a {
  display: block;
  padding: 10px 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark-gray);
  transition: color var(--transition), padding-left var(--transition);
}

.sidebar-link-list a:hover {
  color: var(--red);
  padding-left: 6px;
  text-decoration: none;
}

/* ---- TABLE ---- */
.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  margin: 1.5rem 0;
}

.info-table th, .info-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-gray);
}

.info-table th {
  background: var(--dark);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.info-table tr:nth-child(even) td { background: var(--light-gray); }
.info-table tr:hover td { background: var(--red-light); }

/* ---- CALLOUT BOX ---- */
.callout {
  border-left: 4px solid var(--red);
  background: var(--red-light);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 2rem 0;
}

.callout-title {
  font-weight: 700;
  color: var(--red-dark);
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.callout p { margin: 0; font-size: 0.95rem; color: var(--dark-gray); }

/* ---- DISCLAIMER BOX ---- */
.disclaimer-box {
  background: var(--light-gray);
  border: 1px solid var(--border-gray);
  border-top: 3px solid var(--mid-gray);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  font-size: 0.88rem;
  color: var(--text-light);
}

.disclaimer-box strong { color: var(--dark-gray); }

/* ---- TAGS ---- */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.tag {
  display: inline-block;
  background: var(--light-gray);
  border: 1px solid var(--border-gray);
  color: var(--mid-gray);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  transition: all var(--transition);
  cursor: default;
}

.tag:hover { background: var(--red); color: var(--white); border-color: var(--red); }

.tag-link { cursor: pointer; }

/* ---- RELATED POSTS ---- */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ---- CONTACT ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-gray);
}

.contact-detail:last-child { border-bottom: none; margin-bottom: 0; }

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--red-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.contact-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin: 0;
}

/* ---- FOOTER ---- */
#main-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-top: 1rem;
  line-height: 1.7;
}

.footer-disclaimer {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-top: 1rem;
  line-height: 1.6;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
}

.footer-heading {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li { margin-bottom: 0.5rem; }

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color var(--transition), padding-left var(--transition);
}

.footer-links a:hover { color: var(--red); padding-left: 4px; }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-legal-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.footer-legal-links a:hover { color: var(--red); }

/* ---- HIGHLIGHT ROW ---- */
.highlight-row {
  display: flex;
  gap: 2rem;
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
}

.highlight-row-img {
  width: 240px;
  flex-shrink: 0;
  background: var(--red-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.highlight-row-body { padding: 1.75rem 2rem 1.75rem 0; }

/* ---- STAT ROW ---- */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--dark);
  border-radius: 12px;
  overflow: hidden;
}

.stat-item {
  padding: 2rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}

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

.stat-num {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--red);
  font-family: var(--font-main);
  display: block;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

/* ---- NOTICE BANNER ---- */
.notice-banner {
  background: var(--red-light);
  border-bottom: 2px solid var(--red);
  padding: 10px 0;
  text-align: center;
}

.notice-banner p {
  font-size: 0.85rem;
  color: var(--red-dark);
  margin: 0;
  font-weight: 500;
}

/* ---- PAGINATION ---- */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 3rem;
}

.page-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border-gray);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-gray);
  text-decoration: none;
  transition: all var(--transition);
}

.page-num:hover, .page-num.active {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  text-decoration: none;
}

/* ---- LEGAL PAGES ---- */
.legal-content h2 {
  font-size: 1.5rem;
  margin: 2.5rem 0 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-gray);
  color: var(--dark);
}

.legal-content h2:first-of-type { border-top: none; padding-top: 0; }

.legal-content h3 {
  font-size: 1.15rem;
  margin: 1.5rem 0 0.5rem;
  color: var(--red-dark);
}

.legal-content p, .legal-content li {
  font-size: 0.975rem;
  line-height: 1.85;
  color: var(--text);
}

.legal-content ul, .legal-content ol {
  margin: 0.5rem 0 1.25rem 1.75rem;
}

.legal-effective {
  background: var(--light-gray);
  padding: 12px 20px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 2.5rem; }
  .hero-inner { gap: 2.5rem; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero h1 { font-size: 2rem; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .layout-sidebar { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .highlight-row { flex-direction: column; }
  .highlight-row-img { width: 100%; height: 140px; }
  .highlight-row-body { padding: 1.25rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 1.75rem; }
  .page-hero h1 { font-size: 2rem; }
  .cta-banner h2 { font-size: 1.75rem; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 48px 0; }
  .hero { padding: 60px 0 48px; }
  .hero h1 { font-size: 1.75rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { text-align: center; justify-content: center; }
  .hero-stats { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr; }
}

/* ---- UTILITIES ---- */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0 !important; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.fw-bold { font-weight: 700; }
.text-red { color: var(--red); }
.text-muted { color: var(--text-light); }
.separator { border: none; border-top: 1px solid var(--border-gray); margin: 2rem 0; }