/* ============================================================
   4Secure Conference Intelligence — Site Stylesheet
   Brand: Navy #000033 | Pink #FF3366 | White #FFFFFF
   ============================================================ */

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

:root {
  --navy:       #000033;
  --navy-mid:   #000055;
  --navy-light: #0a0a4a;
  --pink:       #FF3366;
  --pink-light: #ff6688;
  --white:      #FFFFFF;
  --grey-light: #F5F5F5;
  --grey-mid:   #E0E0E0;
  --grey-dark:  #666666;
  --text:       #1a1a2e;

  /* Priority tier colours */
  --must-visit:   #dc2626;
  --high-prio:    #ea580c;
  --medium-prio:  #ca8a04;
  --low-prio:     #16a34a;
  --minimal:      #6b7280;
  --competitor:   #7c3aed;
  --partner:      #0891b2;

  --radius: 8px;
  --shadow: 0 2px 8px rgba(0,0,51,0.12);
  --shadow-lg: 0 4px 20px rgba(0,0,51,0.18);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  color: var(--text);
  background: var(--grey-light);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: var(--pink); text-decoration: none; }
a:hover { text-decoration: underline; color: var(--pink-light); }

/* ---- Top Navigation ---- */
.site-header {
  background: var(--navy);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 64px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
  background-color: white;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius);
}

.site-logo img {
  height: 36px;
  width: auto;
}

.site-logo-text {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.2;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
}

.site-nav a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.active {
  background: rgba(255,51,102,0.2);
  color: var(--white);
  text-decoration: none;
}

.site-nav a.active {
  background: var(--pink);
  color: var(--white);
}

.header-badge {
  margin-left: auto;
  background: var(--pink);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ---- Page Layout ---- */
.page-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  flex: 1;
  width: 100%;
}

.page-wrapper.wide {
  max-width: 1440px;
}

/* ---- Breadcrumb ---- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--grey-dark);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.breadcrumb a { color: var(--pink); }
.breadcrumb .sep { color: var(--grey-mid); }
.breadcrumb .current { color: var(--text); font-weight: 500; }

/* ---- Page Header ---- */
.page-header {
  background: var(--navy);
  color: var(--white);
  padding: 2.5rem 1.5rem;
  margin-bottom: 2rem;
}

.page-header-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.page-header h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.page-header .subtitle {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
}

.page-header .meta-row {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.page-header .meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
}

.page-header .meta-item strong {
  color: var(--white);
}

/* ---- Hero Section (Homepage) ---- */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1a0033 100%);
  color: var(--white);
  padding: 4rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,51,102,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-logo {
  margin-bottom: 2rem;
}

.hero-logo img {
  height: 80px;
  width: auto;
  filter: brightness(0) invert(1);
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

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

.hero .tagline {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 640px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.hero-stat {
  text-align: center;
}

.hero-stat .number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--pink);
  line-height: 1;
}

.hero-stat .label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
}

/* ---- Cards ---- */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.card-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--grey-mid);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.card-header h2, .card-header h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
}

.card-body {
  padding: 1.5rem;
}

.card-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--grey-mid);
  background: var(--grey-light);
}

/* ---- Grid Layouts ---- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }

/* ---- Conference Cards ---- */
.conference-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

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

.conference-card-header {
  padding: 1.25rem;
  background: var(--navy);
  color: var(--white);
  position: relative;
}

.conference-card-header h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.conference-card-header .conf-date {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
}

.conference-card-header .conf-venue {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.15rem;
}

.conference-card-body {
  padding: 1.25rem;
  flex: 1;
}

.conference-card-footer {
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--grey-mid);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.conf-stats {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.conf-stat {
  text-align: center;
}

.conf-stat .n {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.conf-stat .l {
  font-size: 0.7rem;
  color: var(--grey-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---- Priority Badges ---- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.badge-must    { background: #fef2f2; color: var(--must-visit); border: 1px solid #fecaca; }
.badge-high    { background: #fff7ed; color: var(--high-prio); border: 1px solid #fed7aa; }
.badge-medium  { background: #fefce8; color: var(--medium-prio); border: 1px solid #fde68a; }
.badge-low     { background: #f0fdf4; color: var(--low-prio); border: 1px solid #bbf7d0; }
.badge-minimal { background: #f9fafb; color: var(--minimal); border: 1px solid #e5e7eb; }
.badge-competitor { background: #faf5ff; color: var(--competitor); border: 1px solid #e9d5ff; }
.badge-partner { background: #ecfeff; color: var(--partner); border: 1px solid #a5f3fc; }
.badge-navy    { background: var(--navy); color: var(--white); }
.badge-pink    { background: var(--pink); color: var(--white); }

/* Priority tier colours for conference priority */
.priority-highest { border-left: 4px solid var(--must-visit); }
.priority-high    { border-left: 4px solid var(--high-prio); }
.priority-medium  { border-left: 4px solid var(--medium-prio); }
.priority-low     { border-left: 4px solid var(--low-prio); }

/* ---- Score Badge ---- */
.score-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 800;
  flex-shrink: 0;
}

.score-must    { background: var(--must-visit); color: white; }
.score-high    { background: var(--high-prio); color: white; }
.score-medium  { background: var(--medium-prio); color: white; }
.score-low     { background: var(--low-prio); color: white; }
.score-minimal { background: var(--minimal); color: white; }

/* ---- Tables ---- */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 0.875rem;
}

thead th {
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

tbody tr {
  border-bottom: 1px solid var(--grey-mid);
  transition: background 0.1s;
}

tbody tr:last-child { border-bottom: none; }
tbody tr:hover { background: #f8f8ff; }

tbody td {
  padding: 0.75rem 1rem;
  vertical-align: middle;
}

.td-company {
  font-weight: 600;
  color: var(--navy);
}

.td-stand {
  font-family: monospace;
  font-size: 0.85rem;
  color: var(--grey-dark);
}

.td-score {
  font-weight: 700;
  text-align: center;
}

.score-25-30 { color: var(--must-visit); }
.score-18-24 { color: var(--high-prio); }
.score-10-17 { color: var(--medium-prio); }
.score-5-9   { color: var(--low-prio); }
.score-0-4   { color: var(--minimal); }

/* ---- Exhibitor Profile ---- */
.profile-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2rem;
  align-items: start;
}

.profile-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.score-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.score-card-header {
  background: var(--navy);
  color: var(--white);
  padding: 1rem 1.25rem;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.score-card-body {
  padding: 1.25rem;
}

.score-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--grey-mid);
}

.score-row:last-child { border-bottom: none; }

.score-label {
  font-size: 0.875rem;
  color: var(--grey-dark);
}

.score-value {
  font-weight: 700;
  font-size: 1rem;
}

.score-bar-wrap {
  width: 80px;
  height: 6px;
  background: var(--grey-mid);
  border-radius: 3px;
  overflow: hidden;
}

.score-bar {
  height: 100%;
  border-radius: 3px;
  background: var(--pink);
}

.composite-score {
  text-align: center;
  padding: 1.5rem;
  border-top: 2px solid var(--grey-mid);
  margin-top: 0.5rem;
}

.composite-score .big-score {
  font-size: 3rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}

.composite-score .out-of {
  font-size: 1rem;
  color: var(--grey-dark);
}

/* ---- Info Sections ---- */
.info-section {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.info-section h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--pink);
  display: inline-block;
}

.info-section h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin: 1rem 0 0.5rem;
}

.info-section p {
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.info-section ul, .info-section ol {
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}

.info-section li {
  margin-bottom: 0.35rem;
  line-height: 1.6;
}

/* ---- Contact Grid ---- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
}

.contact-item {
  background: var(--grey-light);
  border-radius: 6px;
  padding: 0.75rem;
}

.contact-item .contact-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--grey-dark);
  margin-bottom: 0.25rem;
}

.contact-item .contact-value {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
  word-break: break-word;
}

/* ---- Strategy Page ---- */
.strategy-section {
  margin-bottom: 2.5rem;
}

.strategy-section h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.strategy-section h2::after {
  content: '';
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, var(--pink), transparent);
}

/* ---- Travel Page ---- */
.travel-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.travel-card-header {
  background: var(--navy);
  color: var(--white);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.travel-card-header h3 {
  font-size: 1rem;
  font-weight: 700;
}

.travel-card-body {
  padding: 1.5rem;
}

.venue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.venue-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.25rem;
  border-top: 4px solid var(--pink);
}

.venue-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.venue-detail {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
  font-size: 0.875rem;
}

.venue-detail .vd-label {
  color: var(--grey-dark);
  min-width: 80px;
  flex-shrink: 0;
}

.venue-detail .vd-value {
  color: var(--text);
  font-weight: 500;
}

/* ---- Alert / Warning Boxes ---- */
.alert {
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.alert-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 0.1rem; }
.alert-content { flex: 1; }
.alert-content strong { display: block; margin-bottom: 0.25rem; }

.alert-warning { background: #fffbeb; border: 1px solid #fde68a; color: #92400e; }
.alert-danger  { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }
.alert-info    { background: #eff6ff; border: 1px solid #bfdbfe; color: #1e40af; }
.alert-success { background: #f0fdf4; border: 1px solid #bbf7d0; color: #166534; }

/* ---- Competitor Warning ---- */
.competitor-warning {
  background: #faf5ff;
  border: 2px solid #c084fc;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
}

.competitor-warning strong { color: #7c3aed; }

/* ---- Engagement Strategy Box ---- */
.engagement-box {
  background: linear-gradient(135deg, #f8f8ff 0%, #fff0f5 100%);
  border: 1px solid #e0d0ff;
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1rem;
}

.engagement-box h4 {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.engagement-box blockquote {
  border-left: 3px solid var(--pink);
  padding-left: 1rem;
  color: var(--text);
  font-style: italic;
  margin: 0.5rem 0;
}

/* ---- Section Divider ---- */
.section-divider {
  height: 1px;
  background: var(--grey-mid);
  margin: 2rem 0;
}

/* ---- Stat Boxes ---- */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.stat-box {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.25rem;
  text-align: center;
  border-top: 3px solid var(--pink);
}

.stat-box .stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.stat-box .stat-label {
  font-size: 0.75rem;
  color: var(--grey-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.35rem;
}

/* ---- Tier Summary ---- */
.tier-summary {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.tier-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
}

.tier-pill .count {
  font-size: 1.1rem;
  font-weight: 800;
}

.tier-must   { background: #fef2f2; color: var(--must-visit); border: 2px solid #fecaca; }
.tier-high   { background: #fff7ed; color: var(--high-prio); border: 2px solid #fed7aa; }
.tier-medium { background: #fefce8; color: var(--medium-prio); border: 2px solid #fde68a; }
.tier-low    { background: #f0fdf4; color: var(--low-prio); border: 2px solid #bbf7d0; }
.tier-min    { background: #f9fafb; color: var(--minimal); border: 2px solid #e5e7eb; }

/* ---- Exhibitor List Item ---- */
.exhibitor-list-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 0.75rem;
  transition: transform 0.15s, box-shadow 0.15s;
  text-decoration: none;
  color: inherit;
}

.exhibitor-list-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
}

.exhibitor-list-item .eli-score {
  flex-shrink: 0;
}

.exhibitor-list-item .eli-info {
  flex: 1;
}

.exhibitor-list-item .eli-name {
  font-weight: 700;
  color: var(--navy);
  font-size: 1rem;
}

.exhibitor-list-item .eli-meta {
  font-size: 0.8rem;
  color: var(--grey-dark);
  margin-top: 0.15rem;
}

.exhibitor-list-item .eli-badges {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-top: 0.35rem;
}

/* ---- Footer ---- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 2rem 1.5rem;
  margin-top: auto;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand img {
  height: 28px;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}

.footer-text {
  font-size: 0.8rem;
}

.footer-text strong {
  color: var(--white);
}

/* ---- Utility Classes ---- */
.text-pink   { color: var(--pink); }
.text-navy   { color: var(--navy); }
.text-muted  { color: var(--grey-dark); }
.text-sm     { font-size: 0.875rem; }
.text-xs     { font-size: 0.75rem; }
.font-bold   { font-weight: 700; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .profile-layout { grid-template-columns: 1fr; }
  .profile-sidebar { order: -1; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero h1 { font-size: 1.75rem; }
  .hero-stats { gap: 1.25rem; }
  .hero-stat .number { font-size: 2rem; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .header-inner { gap: 1rem; }
  .site-nav { gap: 0; }
  .site-nav a { padding: 0.4rem 0.6rem; font-size: 0.8rem; }
  .header-badge { display: none; }
  .page-header h1 { font-size: 1.5rem; }
  .tier-summary { gap: 0.5rem; }
}

@media (max-width: 480px) {
  .site-logo-text { display: none; }
  .hero { padding: 2.5rem 1rem; }
  .page-wrapper { padding: 1rem; }
}

/* ---- Print ---- */
@media print {
  .site-header, .site-footer, .breadcrumb { display: none; }
  .page-wrapper { padding: 0; }
  .card, .info-section { box-shadow: none; border: 1px solid #ccc; }
}
