/* ===== HOME PAGE STYLES ===== */

/* --- HERO --- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #D6ECFF 0%, #EAF5FF 35%, #F5FAFF 65%, #FFFFFF 100%);
  padding: 6rem 0 5rem;
  color: var(--navy);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 15% 0%, rgba(255,255,255,0.7) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 85% 10%, rgba(200,230,255,0.5) 0%, transparent 55%);
  pointer-events: none;
}

/* Decorative SVG clouds injected via hero__deco */
.hero__deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.hero .container { position: relative; z-index: 1; }

.hero__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero__layout {
    grid-template-columns: 1fr 400px;
    gap: 5rem;
  }
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--border);
  padding: 0.35rem 0.875rem 0.35rem 0.625rem;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}

.hero__dot {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2.5s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(242,107,42,0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 4px rgba(242,107,42,0); }
}

.hero h1 {
  color: var(--navy);
  margin-bottom: 1.375rem;
  font-size: clamp(2.5rem, 5.5vw, 3.75rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.hero__sub {
  font-size: 1.0625rem;
  color: var(--text-mid);
  line-height: 1.72;
  margin-bottom: 2.25rem;
  max-width: 500px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.btn-ghost {
  background: var(--white);
  color: var(--navy);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover {
  background: var(--sky);
  border-color: #ccd6e0;
  opacity: 1;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.hero__stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.3rem;
  letter-spacing: -0.03em;
}

.hero__stat span {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero__stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

/* Hero visual mock card */
.hero__visual {
  position: relative;
  display: none;
}

@media (min-width: 900px) {
  .hero__visual { display: block; }
}

.hero__visual-glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(ellipse at center, rgba(242,107,42,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero__card-mock {
  position: relative;
  z-index: 1;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.05), 0 0 0 1px rgba(255,255,255,0.9) inset;
}

.hero__card-mock-header {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.875rem 1.125rem;
  border-bottom: 1px solid var(--border);
  background: var(--sky);
}

.hero__card-mock-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.hero__card-mock-title {
  margin-left: auto;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero__card-mock-body {
  padding: 0.5rem 0;
}

.hero__rank-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.6875rem 1.125rem;
  transition: background 0.15s;
  border-bottom: 1px solid rgba(229,233,240,0.6);
}
.hero__rank-item:last-child { border-bottom: none; }
.hero__rank-item:hover { background: var(--sky); }

.hero__rank-item--gold { background: rgba(242,107,42,0.04); }
.hero__rank-item--gold .hero__rank-num {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 2px 8px rgba(242,107,42,0.35);
}

.hero__rank-item--dim { opacity: 0.5; }

.hero__rank-num {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--sky);
  border-radius: 6px;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  border: 1px solid var(--border);
}

.hero__rank-name {
  flex: 1;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
}

.hero__rank-type {
  font-size: 0.625rem;
  color: var(--text-light);
  background: var(--sky);
  border-radius: 4px;
  padding: 0.2rem 0.5rem;
  white-space: nowrap;
  border: 1px solid var(--border);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.hero__card-mock-footer {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.75rem 1.125rem;
  border-top: 1px solid var(--border);
  font-size: 0.6875rem;
  color: var(--text-light);
  background: var(--sky);
}

/* Legacy fallbacks */
.hero__inner { max-width: 780px; margin: 0 auto; }
.hero__shield { display: none; }
.hero__badges { display: none; }

/* --- HOW WE RANK --- */
.how-we-rank { padding: 5.5rem 0; background: var(--white); border-top: 1px solid var(--border); }

.criteria-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media (min-width: 768px) {
  .criteria-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .criteria-grid { grid-template-columns: repeat(4, 1fr); }
}

.criteria-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid transparent;
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s, border-top-color 0.2s;
}
.criteria-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-top-color: var(--orange);
}

.criteria-card__icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(242,107,42,0.12) 0%, rgba(242,107,42,0.06) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(242,107,42,0.15);
}
.criteria-card__icon svg {
  color: var(--orange);
  stroke: var(--orange);
}
.criteria-card h3 {
  font-size: 0.9375rem;
  margin-bottom: 0.625rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}
.criteria-card p { font-size: 0.875rem; color: var(--text-mid); margin: 0; line-height: 1.65; }
.how-we-rank__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 2.5rem;
  font-weight: 500;
  color: var(--orange);
  font-size: 0.9375rem;
  transition: gap 0.15s;
}
.how-we-rank__link:hover { gap: 0.625rem; }

/* --- COMPARISON TABLE --- */
.comparison { padding: 5.5rem 0; background: var(--sky); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.comparison .table-scroll {
  margin-top: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.comparison table { min-width: 860px; }
.comparison thead th {
  padding: 1rem 1.25rem;
  font-size: 0.6875rem;
  letter-spacing: 0.07em;
}
.comparison tbody td { padding: 1rem 1.25rem; }
.comparison tbody tr:nth-child(odd) { background: rgba(234,244,251,0.45); }
.comparison tbody tr:nth-child(odd):hover { background: var(--sky); }
.company-name-cell { font-weight: 600; color: var(--navy); }
.company-name-cell a { color: inherit; }
.company-name-cell a:hover { color: var(--orange); }
.type-badge {
  display: inline-block;
  padding: 0.2rem 0.625rem;
  border-radius: 6px;
  font-size: 0.6875rem;
  font-weight: 500;
  background: var(--sky);
  color: var(--navy);
  border: 1px solid var(--border);
  white-space: nowrap;
}

/* --- RANKING --- */
.ranking { padding: 5.5rem 0; background: var(--white); }
.ranking__list { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2.5rem; }

.company-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s, transform 0.25s;
}
.company-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.company-card--featured {
  border-color: rgba(242,107,42,0.25);
  border-left: 3px solid var(--orange);
  box-shadow: 0 4px 24px rgba(242,107,42,0.08), var(--shadow-sm);
}
.company-card--featured:hover {
  box-shadow: 0 10px 36px rgba(242,107,42,0.14), var(--shadow-md);
}

.company-card__header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.375rem 1.5rem 1rem;
}

.company-card__rank {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(26,43,94,0.08);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(26,43,94,0.12);
}
.company-card--featured .company-card__rank {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 4px 12px rgba(242,107,42,0.35);
}
.company-card__rank-1 {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 4px 12px rgba(242,107,42,0.35);
  font-size: 0.6875rem;
}
.company-card__rank-2 {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.company-card__rank-3 {
  background: rgba(17,24,39,0.55);
  color: var(--white);
  border-color: rgba(17,24,39,0.55);
}

.company-card__meta { flex: 1; min-width: 0; }
.company-card__name {
  font-family: var(--font-head);
  font-size: 1.1875rem;
  color: var(--navy);
  margin-bottom: 0.2rem;
  line-height: 1.3;
}
.company-card__tagline {
  font-size: 0.8125rem;
  color: var(--text-light);
}
.company-card__link {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  background: var(--white);
  color: var(--navy);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  transition: background 0.15s, color 0.15s, border-color 0.15s, box-shadow 0.15s;
  align-self: center;
  white-space: nowrap;
}
.company-card__link:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  box-shadow: 0 4px 12px rgba(26,43,94,0.2);
}
.company-card--featured .company-card__link {
  border-color: rgba(242,107,42,0.3);
  color: var(--orange-dark);
}
.company-card--featured .company-card__link:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 4px 12px rgba(242,107,42,0.3);
}

.company-card__body { padding: 0 1.5rem 1.5rem; }
.company-card__body > p:first-child {
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}
.company-card__body p { font-size: 0.9375rem; color: var(--text-mid); line-height: 1.72; margin-bottom: 1rem; }

.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-top: 0.875rem;
}
.service-tag {
  display: inline-flex;
  padding: 0.25rem 0.625rem;
  background: var(--sky);
  color: var(--navy);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.company-card--featured .service-tag {
  background: rgba(242,107,42,0.07);
  border-color: rgba(242,107,42,0.18);
  color: var(--orange-dark);
}

/* --- COMPLIANCE FRAMEWORK --- */
.compliance { padding: 5.5rem 0; background: var(--white); border-top: 1px solid var(--border); }
.compliance__intro {
  font-size: 1.0625rem;
  color: var(--text-mid);
  max-width: 680px;
  margin-bottom: 2rem;
}
.compliance .table-scroll { border-radius: var(--radius-lg); border: 1px solid var(--border); overflow: hidden; }
.compliance table { min-width: 700px; }
.compliance-text { margin-top: 2.5rem; }
.compliance-text h3 { margin-bottom: 0.75rem; font-size: 1.25rem; }
.compliance-text p { font-size: 0.9375rem; color: var(--text-mid); }
.compliance-text a { color: var(--orange); }
.compliance-text a:hover { text-decoration: underline; }

/* Sovereign SOC block */
.sovereign-soc-block {
  background: linear-gradient(135deg, var(--sky) 0%, rgba(240,247,255,0.5) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.sovereign-soc-block::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(242,107,42,0.1);
  pointer-events: none;
}
.sovereign-soc__icon {
  width: 48px;
  height: 48px;
  background: rgba(242,107,42,0.1);
  border: 1px solid rgba(242,107,42,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--orange);
}

/* Compliance table links */
.compliance table td a {
  color: var(--navy);
  font-weight: 600;
  border-bottom: 1px solid rgba(17,24,39,0.2);
  transition: color 0.15s, border-color 0.15s;
}
.compliance table td a:hover {
  color: var(--orange);
  border-color: var(--orange);
}

/* --- CHECKLIST --- */
.checklist { padding: 5.5rem 0; background: var(--white); border-top: 1px solid var(--border); }
.checklist-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .checklist-grid { grid-template-columns: repeat(2, 1fr); }
}

.checklist-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.625rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.checklist-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.checklist-item__num {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: 0.8125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(242,107,42,0.3);
  margin-top: 2px;
}
.checklist-item__body h4 {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
  line-height: 1.35;
}
.checklist-item__body p { font-size: 0.875rem; color: var(--text-mid); margin: 0; line-height: 1.65; }

/* --- COST BENCHMARKS --- */
.cost { padding: 5.5rem 0; background: var(--navy); }
.cost h2 { color: var(--white); }
.cost .section-label { color: rgba(242,107,42,1); background: rgba(242,107,42,0.15); border-color: rgba(242,107,42,0.3); }
.cost .section-intro { color: rgba(255,255,255,0.65); }
.cost .table-scroll { margin-top: 2rem; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(255,255,255,0.08); }
.cost table { min-width: 500px; }
.cost thead th { background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.6); border-bottom: 1px solid rgba(255,255,255,0.08); }
.cost tbody tr { border-bottom: 1px solid rgba(255,255,255,0.06); }
.cost tbody tr:hover { background: rgba(255,255,255,0.04); }
.cost tbody td { color: rgba(255,255,255,0.8); }
.cost tbody td:first-child { color: var(--white); font-weight: 500; }
.cost tbody td:nth-child(2) { color: var(--white); font-weight: 700; font-family: var(--font-head); font-size: 1rem; }
.cost .cost-note { font-size: 0.8125rem; color: rgba(255,255,255,0.4); margin-top: 1.25rem; }

/* --- FAQ --- */
.faq { padding: 5.5rem 0; background: var(--sky); border-top: 1px solid var(--border); }
.faq__list { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }

details.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.15s;
}
details.faq-item[open] { box-shadow: var(--shadow-sm); }

details.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.125rem 1.375rem;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background 0.15s;
}
details.faq-item summary:hover { background: var(--sky); }
details.faq-item summary::-webkit-details-marker { display: none; }

details.faq-item summary h3 {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
  line-height: 1.4;
}
.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--text-light);
  transition: transform 0.2s;
}
details.faq-item[open] .faq-chevron { transform: rotate(180deg); }

.faq-item__body {
  padding: 0 1.375rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.72;
}

/* --- THREAT LANDSCAPE --- */
.threat { padding: 5.5rem 0; background: var(--sky); border-top: 1px solid var(--border); }
.threat__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .threat__content { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}
.threat-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 1.5rem 1.5rem 1.5rem 1.375rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.threat-block:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.threat-block h4 {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.threat-block p { font-size: 0.875rem; color: var(--text-mid); margin: 0; line-height: 1.68; }
.threat__source {
  margin-top: 1.5rem;
  font-size: 0.8125rem;
  color: var(--text-light);
}
.threat__source a { color: var(--orange); }
.threat__source a:hover { text-decoration: underline; }

/* --- METHODOLOGY PAGE --- */
.methodology-content {
  max-width: 780px;
  margin: 0 auto;
}
.methodology-content h2 { margin-top: 2.5rem; margin-bottom: 1rem; }
.methodology-content h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--navy);
  margin: 1.75rem 0 0.625rem;
}
.methodology-content p { font-size: 0.9375rem; color: var(--text-mid); }
.methodology-content ul { list-style: disc; padding-left: 1.5rem; }
.methodology-content li { font-size: 0.9375rem; color: var(--text-mid); margin-bottom: 0.375rem; }

.weight-badge {
  display: inline-block;
  padding: 0.2rem 0.625rem;
  background: var(--orange);
  color: var(--white);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-left: 0.5rem;
  vertical-align: middle;
}

/* --- ABOUT / EDITORIAL PAGES --- */
.prose-content {
  max-width: 720px;
  margin: 0 auto;
}
.prose-content h2 { margin-top: 2rem; margin-bottom: 0.75rem; }
.prose-content h3 { font-size: 1.0625rem; margin-top: 1.5rem; margin-bottom: 0.5rem; }
.prose-content p { font-size: 0.9625rem; color: var(--text-mid); }
.prose-content ul { list-style: disc; padding-left: 1.5rem; }
.prose-content li { font-size: 0.9375rem; color: var(--text-mid); margin-bottom: 0.375rem; }
.prose-content a { color: var(--orange); }
.prose-content a:hover { text-decoration: underline; }

/* --- CONTACT / SUBMIT FORM --- */
.form-page { padding: 4rem 0; }
.form-card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.form-card h2 { margin-bottom: 0.5rem; }
.form-card .form-intro { font-size: 0.9375rem; color: var(--text-mid); margin-bottom: 2rem; }

.checkboxes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.375rem;
}

/* --- STANDALONE FAQ PAGE --- */
.faq-page-content { padding: 4rem 0; }
.faq-page-content .faq__list { max-width: 820px; margin: 2rem auto 0; }

/* --- COOKIE POLICY --- */
.cookie-content { padding: 4rem 0; }
.cookie-content .prose-content h2 { margin-top: 2.5rem; }

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 767px) {
  .company-card__header { flex-wrap: wrap; }
  .company-card__link { width: 100%; justify-content: center; }
  .section { padding: 3rem 0; }
  .hero { padding: 3.5rem 0 3rem; }
}
