/* System Digital Tecnologia — paleta alinhada ao SDGestor (HUB + login) */
:root {
  --color-primary: #cf3711;
  --color-primary-dark: #9e2e12;
  --color-primary-hover: #b6300f;
  --color-charcoal: #464849;
  --hub-bg: #0c0c0e;
  --hub-surface: #161618;
  --hub-header: #242428;
  --hub-text: #f2f2f7;
  --hub-muted: #98989e;
  --body-bg: #f1f5f9;
  --text: #1e293b;
  --text-muted: #64748b;
  --accent-blue: #5b9eff;
  --white: #ffffff;
  --border-subtle: rgba(255, 255, 255, 0.06);
  --glow-red: rgba(170, 25, 25, 0.45);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 10px;
  --font-sans: "Nunito", system-ui, -apple-system, sans-serif;
  --shadow-card: 0 4px 24px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.04);
  --shadow-card-hover: 0 12px 40px rgba(15, 23, 42, 0.1);
  --shadow-elevated: -1px 0 60px var(--glow-red), 0 8px 32px rgba(0, 0, 0, 0.4),
    0 1px 0 rgba(255, 255, 255, 0.06) inset;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--body-bg);
}

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

a {
  color: var(--color-primary-dark);
  text-decoration: none;
}

a:hover {
  color: var(--color-primary);
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--color-primary-dark);
  color: var(--white);
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(36, 36, 40, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(110, 12, 12, 0.35);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.site-header__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0.65rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--hub-text);
  text-decoration: none;
}

.brand:hover {
  color: var(--hub-text);
}

.brand__logo {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.brand__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  line-height: 1.15;
}

.brand__name {
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.brand__line {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--hub-muted);
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links a {
  color: var(--hub-muted);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.5rem 0.65rem;
  border-radius: var(--radius-sm);
  transition: color 0.15s ease, background 0.15s ease;
}

.nav__links a:hover {
  color: var(--hub-text);
  background: rgba(255, 255, 255, 0.07);
}

.nav__actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.45rem;
  margin-left: 0.35rem;
  flex-shrink: 0;
}

.nav__login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1rem;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--hub-text) !important;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.12s ease;
}

.nav__login:hover {
  color: var(--hub-text) !important;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

.nav__login:active {
  transform: scale(0.98);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.15rem;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--white) !important;
  background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(158, 46, 18, 0.45);
  transition: transform 0.12s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.nav__cta:hover {
  color: var(--white) !important;
  filter: brightness(1.06);
  box-shadow: 0 4px 20px rgba(158, 46, 18, 0.5);
}

.nav__cta:active {
  transform: scale(0.98);
}

.nav__toggle {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-subtle);
  color: var(--hub-text);
  padding: 0.45rem 0.65rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
}

@media (max-width: 900px) {
  .nav__toggle {
    display: block;
  }

  .nav__panel {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--hub-surface);
    border-bottom: 1px solid rgba(110, 12, 12, 0.25);
    padding: 0.85rem 1rem 1.1rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    display: none;
  }

  .nav__panel.is-open {
    display: flex;
  }

  .nav__links {
    flex-direction: column;
    align-items: stretch;
  }

  .nav__links a {
    padding: 0.7rem 0.75rem;
  }

  .nav__actions {
    flex-direction: column;
    align-items: stretch;
    margin-left: 0;
    margin-top: 0.35rem;
    width: 100%;
    gap: 0.5rem;
  }

  .nav__login,
  .nav__cta {
    width: 100%;
    justify-content: center;
  }
}

@media (min-width: 901px) {
  .nav__panel {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    background: transparent;
    border: none;
    padding: 0;
    position: static;
  }
}

/* —— Hero —— */
.hero {
  position: relative;
  background: linear-gradient(165deg, #2a2a30 0%, var(--hub-header) 45%, #1a1818 100%);
  color: var(--hub-text);
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  border-bottom: 1px solid rgba(207, 55, 17, 0.35);
  box-shadow: var(--shadow-elevated);
  padding: 2.75rem 1.25rem 3.5rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 100% 0%, rgba(207, 55, 17, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 0% 100%, rgba(91, 158, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

/* Linha luminosa que “corre” na borda inferior do hero */
.hero::after {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 0 0 40px 40px;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(207, 55, 17, 0.12) 0%,
    rgba(207, 55, 17, 0.12) 38%,
    rgba(207, 55, 17, 0.85) 44%,
    #ffb59a 48%,
    #ffffff 50%,
    #ffb59a 52%,
    rgba(207, 55, 17, 0.85) 56%,
    rgba(207, 55, 17, 0.12) 62%,
    rgba(207, 55, 17, 0.12) 100%
  );
  background-size: 220% 100%;
  animation: hero-border-run 2.6s linear infinite;
  box-shadow: 0 0 14px rgba(207, 55, 17, 0.35);
}

@media (prefers-reduced-motion: reduce) {
  .hero::after {
    animation: none;
    background-position: 50% 0;
    background-size: 100% 100%;
    opacity: 0.85;
  }
}

@keyframes hero-border-run {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 960px) {
  .hero__inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    align-items: center;
  }
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-primary);
  margin-bottom: 0.85rem;
}

.hero__eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), transparent);
  border-radius: 2px;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: var(--hub-text);
}

.hero h1 .hero__product {
  color: var(--color-primary);
  text-shadow: 0 0 40px rgba(207, 55, 17, 0.35);
}

.hero__lead {
  margin: 0 0 1.65rem;
  font-size: 1.08rem;
  color: var(--hub-muted);
  max-width: 38ch;
  font-weight: 500;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  margin-bottom: 1.65rem;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--hub-text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, transform 0.12s ease, box-shadow 0.15s ease;
}

.btn--primary {
  background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(158, 46, 18, 0.4);
}

.btn--primary:hover {
  color: var(--white);
  box-shadow: 0 6px 28px rgba(158, 46, 18, 0.48);
  filter: brightness(1.05);
}

.btn--secondary {
  background: var(--white);
  color: var(--color-primary-dark);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

.btn--secondary:hover {
  color: var(--color-primary-dark);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.14);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.07);
  color: var(--hub-text);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.btn--ghost:hover {
  color: var(--hub-text);
  background: rgba(255, 255, 255, 0.11);
}

.btn:active {
  transform: scale(0.98);
}

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
}

@media (min-width: 960px) {
  .hero__visual {
    min-height: 320px;
  }
}

.hero__visual-ring {
  position: absolute;
  width: min(100%, 340px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, rgba(207, 55, 17, 0.2) 0%, transparent 55%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 20px 60px rgba(0, 0, 0, 0.35);
}

.hero__visual-logo {
  position: relative;
  z-index: 2;
  width: min(220px, 70vw);
  height: auto;
  filter: drop-shadow(0 12px 40px rgba(0, 0, 0, 0.45));
  animation: hero-float 5s ease-in-out infinite;
}

@keyframes hero-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.hero__badge {
  position: absolute;
  z-index: 3;
  bottom: 8%;
  right: 4%;
  background: var(--hub-surface);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 0.65rem 1rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  text-align: left;
}

.hero__badge strong {
  display: block;
  font-size: 0.95rem;
  color: var(--hub-text);
  font-weight: 800;
}

.hero__badge span {
  font-size: 0.75rem;
  color: var(--hub-muted);
  font-weight: 600;
}

@media (max-width: 599px) {
  .hero__badge {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 1rem;
    align-self: center;
  }

  .hero__visual {
    flex-direction: column;
  }
}

/* —— Section shell —— */
.section {
  max-width: 1160px;
  margin: 0 auto;
  padding: 3.5rem 1.25rem;
}

.section--muted {
  background: var(--white);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06);
}

.section__head {
  max-width: 640px;
  margin-bottom: 2.25rem;
}

.section__label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-primary-dark);
  margin-bottom: 0.5rem;
}

.section__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.2;
}

.section__subtitle {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
  font-weight: 500;
}

.section__title .accent {
  color: var(--color-primary-dark);
}

/* —— Product highlight —— */
.product-block {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 880px) {
  .product-block {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }
}

.product-block__card {
  background: linear-gradient(145deg, var(--hub-surface) 0%, #1e1e22 100%);
  color: var(--hub-text);
  border-radius: var(--radius-xl);
  padding: 2rem 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-card-hover);
}

.product-block__card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.product-block__card h3 span {
  color: var(--color-primary);
}

.product-block__card p {
  margin: 0 0 1rem;
  color: var(--hub-muted);
  font-size: 0.98rem;
}

.product-block__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-block__list li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.65rem;
  font-size: 0.95rem;
  color: var(--hub-text);
  font-weight: 600;
}

.product-block__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 10px rgba(207, 55, 17, 0.6);
}

.product-block__aside {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.product-block__aside p {
  margin: 0 0 1rem;
}

.product-block__aside strong {
  color: var(--text);
}

/* —— Benefits grid —— */
.benefit-grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .benefit-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.benefit-card {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.35rem;
  box-shadow: var(--shadow-card);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.benefit-card:hover {
  border-color: rgba(207, 55, 17, 0.3);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}

.benefit-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(207, 55, 17, 0.15) 0%, rgba(158, 46, 18, 0.1) 100%);
  color: var(--color-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

.benefit-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
}

.benefit-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* —— Solutions —— */
.solutions-grid {
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 720px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .solutions-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.solution-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.4rem;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.solution-card:hover {
  border-color: rgba(207, 55, 17, 0.22);
  box-shadow: var(--shadow-card-hover);
}

.solution-card__tag {
  align-self: flex-start;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary-dark);
  background: rgba(207, 55, 17, 0.1);
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  margin-bottom: 0.85rem;
}

.solution-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
}

.solution-card p {
  margin: 0;
  flex: 1;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* —— Gestão (estoque, financeiro, caixa) —— */
.mgmt-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .mgmt-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.mgmt-card {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 1.65rem 1.45rem;
  box-shadow: var(--shadow-card);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.mgmt-card:hover {
  border-color: rgba(207, 55, 17, 0.22);
  box-shadow: var(--shadow-card-hover);
}

.mgmt-card__tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary-dark);
  margin-bottom: 0.65rem;
}

.mgmt-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

.mgmt-card > p {
  margin: 0 0 0.85rem;
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.mgmt-card > p:last-child {
  margin-bottom: 0;
}

.mgmt-card ul {
  margin: 0 0 0.85rem;
  padding-left: 1.2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.mgmt-card li {
  margin-bottom: 0.4rem;
}

.mgmt-card li:last-child {
  margin-bottom: 0;
}

/* —— Galeria de telas do sistema —— */
.showcase-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.65rem;
  }
}

.showcase-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.showcase-card__frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #0f0f12;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-card);
  line-height: 0;
  transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.showcase-card:hover .showcase-card__frame {
  border-color: rgba(207, 55, 17, 0.28);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.showcase-card__frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: top center;
}

.showcase-card__caption {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0 0.15rem;
}

.showcase-card__caption strong {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

.showcase-card__caption span {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  font-weight: 500;
}

/* —— About —— */
.about-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 800px) {
  .about-grid {
    grid-template-columns: 160px 1fr;
    gap: 2.5rem;
  }
}

.about-grid__logo {
  width: 140px;
  height: 140px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-card);
  border: 1px solid #e2e8f0;
  padding: 12px;
}

.about-grid__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-grid__body p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.about-grid__body p:last-child {
  margin-bottom: 0;
}

.about-grid__body strong {
  color: var(--text);
}

/* —— Quote —— */
.quote-block {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem 1.25rem 0;
}

.quote-block blockquote {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 600;
  font-style: italic;
  color: var(--text);
  line-height: 1.55;
}

.quote-block cite {
  display: block;
  margin-top: 1rem;
  font-size: 0.88rem;
  font-style: normal;
  font-weight: 700;
  color: var(--text-muted);
}

/* —— CTA strip —— */
.cta-strip {
  position: relative;
  background: linear-gradient(155deg, #1f1f24 0%, var(--hub-header) 50%, #252528 100%);
  color: var(--hub-text);
  padding: 3.25rem 1.25rem;
  text-align: center;
  border-top: 1px solid rgba(207, 55, 17, 0.35);
  overflow: hidden;
}

.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 120%, rgba(207, 55, 17, 0.2) 0%, transparent 55%);
  pointer-events: none;
}

.cta-strip__inner {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
}

.cta-strip h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.cta-strip p {
  margin: 0 0 1.5rem;
  color: var(--hub-muted);
  font-size: 1.05rem;
  font-weight: 500;
}

.cta-strip__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.cta-strip .btn--primary {
  min-width: 220px;
}

.cta-strip .btn--ghost {
  min-width: 180px;
}

/* —— Footer —— */
.site-footer {
  background: var(--hub-bg);
  color: var(--hub-muted);
  padding: 2.5rem 1.25rem;
  font-size: 0.875rem;
}

.site-footer__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 720px) {
  .site-footer__inner {
    grid-template-columns: 1fr auto;
    align-items: start;
  }
}

.site-footer__brand {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.site-footer__brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  padding: 4px;
}

.site-footer__brand strong {
  display: block;
  color: var(--hub-text);
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.site-footer__brand span {
  font-size: 0.82rem;
  line-height: 1.45;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
}

.site-footer a {
  color: var(--accent-blue);
  font-weight: 600;
}

.site-footer a:hover {
  text-decoration: underline;
}
