:root {
  --orange: #ea580c;
  --orange-dark: #c2410c;
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;
  --emerald: #059669;
  --blue: #2563eb;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-3xl: 3rem;
  --shadow-soft: 0 18px 60px rgba(15, 23, 42, 0.08);
  --shadow-strong: 0 28px 80px rgba(15, 23, 42, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--slate-900);
  background: var(--slate-50);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.container {
  width: min(1440px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  background: var(--slate-950);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topbar .container {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar a {
  color: white;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(226, 232, 240, 0.75);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: max-content;
}

.brand img {
  width: 154px;
  height: auto;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  color: white;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  font-weight: 700;
  box-shadow: 0 14px 26px rgba(234, 88, 12, 0.28);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 1;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--slate-600);
  font-weight: 650;
  font-size: 0.88rem;
  transition: 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--orange-dark);
  background: #fff7ed;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-toggle {
  display: none;
  border: 0;
  background: var(--slate-100);
  color: var(--slate-900);
  width: 46px;
  height: 46px;
  border-radius: 16px;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 18px;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: white;
  background: var(--orange);
  box-shadow: 0 18px 35px rgba(234, 88, 12, 0.24);
}

.btn-primary:hover {
  background: var(--orange-dark);
}

.btn-dark {
  color: white;
  background: var(--slate-900);
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.2);
}

.btn-ghost {
  color: var(--slate-900);
  background: white;
  border: 1px solid var(--slate-200);
}

.section {
  padding: 88px 0;
}

.section-tight {
  padding: 56px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px;
  border: 1px solid #fed7aa;
  border-radius: 999px;
  color: var(--orange-dark);
  background: #fff7ed;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(234, 88, 12, 0.12);
}

.hero {
  position: relative;
  padding: 60px 0 78px;
}

.hero::before,
.hero::after,
.glow {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
  pointer-events: none;
}

.hero::before {
  width: 360px;
  height: 360px;
  left: -130px;
  top: 60px;
  background: rgba(234, 88, 12, 0.14);
}

.hero::after {
  width: 420px;
  height: 420px;
  right: -180px;
  bottom: 20px;
  background: rgba(37, 99, 235, 0.1);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 36px;
  align-items: stretch;
}

.hero-copy {
  padding: 48px 0;
}

.hero h1,
.page-hero h1 {
  margin: 18px 0 22px;
  color: var(--slate-900);
  font-size: clamp(2.55rem, 5vw, 5.6rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 800;
  text-wrap: balance;
}

.hero h1 span,
.page-hero h1 span,
.accent {
  color: var(--orange);
}

.lead {
  margin: 0;
  max-width: 720px;
  color: var(--slate-600);
  font-size: clamp(1.05rem, 1.7vw, 1.32rem);
  line-height: 1.75;
  font-weight: 500;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-panel {
  position: relative;
  min-height: 560px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-3xl);
  background:
    radial-gradient(circle at 25% 15%, rgba(234, 88, 12, 0.17), transparent 30%),
    linear-gradient(145deg, #ffffff, #f8fafc);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.hero-panel-main {
  position: absolute;
  inset: 30px 30px 168px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 34px;
  background: var(--slate-950);
  overflow: hidden;
}

.hero-panel-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
}

.hero-panel-badge {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.metric-card {
  padding: 18px 14px;
  border: 1px solid var(--slate-200);
  border-radius: 22px;
  background: white;
  text-align: center;
}

.metric-card strong {
  display: block;
  color: var(--slate-900);
  font-size: 1.35rem;
  line-height: 1;
  font-weight: 750;
}

.metric-card span {
  display: block;
  margin-top: 8px;
  color: var(--slate-500);
  font-size: 0.62rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section-title {
  margin: 12px 0 0;
  color: var(--slate-900);
  font-size: clamp(2rem, 3.4vw, 3.7rem);
  line-height: 1;
  letter-spacing: -0.035em;
  font-weight: 800;
  text-wrap: balance;
}

.section-desc {
  max-width: 580px;
  margin: 0;
  color: var(--slate-500);
  font-weight: 500;
  text-wrap: pretty;
  line-height: 1.75;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  position: relative;
  padding: 30px;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-2xl);
  background: white;
  box-shadow: 0 12px 38px rgba(15, 23, 42, 0.04);
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: #fed7aa;
  box-shadow: var(--shadow-soft);
}

.icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  color: var(--orange);
  background: #fff7ed;
  font-size: 1.5rem;
  font-weight: 700;
}

.card h3 {
  margin: 22px 0 12px;
  color: var(--slate-900);
  font-size: 1.36rem;
  line-height: 1.15;
  font-weight: 700;
  text-wrap: balance;
}

.card p {
  margin: 0;
  color: var(--slate-600);
  font-weight: 500;
  text-wrap: pretty;
  line-height: 1.72;
}

.card ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--slate-600);
  font-size: 0.92rem;
  font-weight: 600;
}

.card li {
  display: flex;
  gap: 10px;
}

.card li::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: 8px;
  border-radius: 999px;
  flex: 0 0 auto;
  background: var(--orange);
}

.solution-card {
  padding: 0;
  overflow: hidden;
}

.solution-media {
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--slate-950);
  overflow: hidden;
}

.solution-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
}

.solution-body {
  padding: 26px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--slate-600);
  background: var(--slate-100);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dark-band {
  position: relative;
  color: white;
  background: var(--slate-950);
  border-radius: var(--radius-3xl);
  padding: 58px;
  overflow: hidden;
}

.dark-band::before {
  content: "";
  position: absolute;
  top: -160px;
  right: -110px;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: rgba(234, 88, 12, 0.18);
  filter: blur(70px);
}

.dark-band > * {
  position: relative;
  z-index: 1;
}

.dark-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.dark-band h2,
.dark-band h3 {
  margin: 0;
  color: white;
  font-size: clamp(2rem, 3vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 800;
  text-wrap: balance;
}

.dark-band p {
  color: rgba(226, 232, 240, 0.82);
}

.dark-band .card {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: none;
}

.dark-band .card h3 {
  color: #ffffff;
}

.dark-band .card p {
  color: rgba(226, 232, 240, 0.78);
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.step {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
}

.step strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  color: white;
  background: var(--orange);
  font-weight: 700;
}

.step h4 {
  margin: 18px 0 10px;
  color: white;
  font-size: 1rem;
  font-weight: 700;
}

.step p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
}

.project-list {
  display: grid;
  gap: 16px;
}

.project-row {
  display: grid;
  grid-template-columns: 78px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 18px;
  border: 1px solid var(--slate-200);
  border-radius: 26px;
  background: white;
  box-shadow: 0 12px 38px rgba(15, 23, 42, 0.04);
}

.project-row img {
  width: 78px;
  height: 62px;
  border-radius: 18px;
  object-fit: cover;
  background: var(--slate-100);
}

.project-row h3 {
  margin: 0 0 6px;
  color: var(--slate-900);
  font-size: 1.05rem;
  font-weight: 700;
}

.project-row p {
  margin: 0;
  color: var(--slate-500);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.55;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border-radius: 999px;
  color: #047857;
  background: #ecfdf5;
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #10b981;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.image-frame {
  border-radius: var(--radius-3xl);
  overflow: hidden;
  background: white;
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-soft);
}

.image-frame.dark {
  background: var(--slate-950);
}

.image-frame img {
  width: 100%;
  height: auto;
}

.corporate-lobby-section {
  padding-top: 8px;
}

.corporate-lobby-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-3xl);
  background: white;
  box-shadow: var(--shadow-strong);
}

.corporate-lobby-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.corporate-lobby-frame img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.feature {
  display: flex;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--slate-200);
  border-radius: 20px;
  background: white;
}

.feature i {
  width: 12px;
  height: 12px;
  margin-top: 7px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(234, 88, 12, 0.11);
  flex: 0 0 auto;
}

.feature strong {
  display: block;
  margin-bottom: 4px;
  color: var(--slate-900);
  font-weight: 700;
}

.feature span {
  color: var(--slate-500);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.55;
}

.page-hero {
  padding: 74px 0 46px;
}

.page-hero .lead {
  max-width: 860px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--slate-500);
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.breadcrumb a {
  color: var(--orange-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 26px;
}

.contact-card {
  padding: 28px;
  border-radius: var(--radius-2xl);
  color: white;
  background: var(--slate-950);
}

.contact-card h3 {
  margin: 0 0 18px;
  color: white;
  font-size: 1.4rem;
  font-weight: 700;
}

.contact-item {
  display: grid;
  gap: 6px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.contact-item span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-item a,
.contact-item strong {
  color: white;
  font-size: 1.05rem;
  line-height: 1.5;
  font-weight: 650;
}

.notice {
  padding: 22px;
  border: 1px solid #fed7aa;
  border-radius: 24px;
  color: #9a3412;
  background: #fff7ed;
  font-weight: 500;
  line-height: 1.7;
}

.legal-section {
  padding-top: 28px;
}

.legal-document {
  display: grid;
  gap: 22px;
  max-width: 1120px;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.legal-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid #fed7aa;
  border-radius: 999px;
  color: #9a3412;
  background: #fff7ed;
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.legal-card {
  padding: 28px;
  border: 1px solid var(--slate-200);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.045);
}

.legal-card-wide {
  grid-column: 1 / -1;
}

.legal-card h2 {
  margin: 0 0 16px;
  color: var(--slate-900);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.18;
  letter-spacing: -0.025em;
  font-weight: 750;
  text-wrap: balance;
}

.legal-card p {
  margin: 0;
  color: var(--slate-600);
  line-height: 1.78;
  font-weight: 500;
  text-wrap: pretty;
}

.legal-card p + p,
.legal-card p + ul {
  margin-top: 14px;
}

.legal-card a {
  color: var(--orange-dark);
  font-weight: 700;
}

.legal-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: var(--slate-600);
  line-height: 1.65;
  font-weight: 500;
}

.legal-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--slate-200);
  border-radius: 22px;
}

.legal-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: #ffffff;
}

.legal-table th,
.legal-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--slate-200);
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  color: var(--slate-900);
  background: var(--slate-50);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-table td {
  color: var(--slate-600);
  font-size: 0.94rem;
  line-height: 1.6;
  font-weight: 500;
}

.legal-table tr:last-child td {
  border-bottom: 0;
}

.footer {
  position: relative;
  margin-top: 70px;
  padding: 76px 0 32px;
  color: rgba(226, 232, 240, 0.78);
  background: var(--slate-950);
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  left: 18%;
  top: -150px;
  width: 340px;
  height: 340px;
  border-radius: 999px;
  background: rgba(234, 88, 12, 0.1);
  filter: blur(78px);
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.8fr 1.05fr;
  gap: 52px;
}

.footer img {
  width: 155px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.footer p {
  color: rgba(226, 232, 240, 0.74);
  line-height: 1.8;
  font-weight: 500;
}

.footer h3 {
  margin: 0 0 24px;
  color: white;
  border-left: 4px solid var(--orange);
  padding-left: 14px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.footer a {
  color: rgba(226, 232, 240, 0.76);
  font-size: 0.88rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: white;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  margin-top: 54px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(226, 232, 240, 0.58);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: white;
  background: #25d366;
  box-shadow: 0 16px 35px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s ease, background 0.2s ease;
}

.whatsapp:hover {
  transform: translateY(-3px) scale(1.04);
  background: #128c7e;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .hero-grid,
  .dark-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .process {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .topbar {
    display: none;
  }

  .nav {
    min-height: 72px;
  }

  .brand img {
    width: 132px;
  }

  .mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: fixed;
    inset: 72px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--slate-200);
    border-radius: 26px;
    background: white;
    box-shadow: var(--shadow-strong);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    justify-content: center;
  }

  .nav-actions .btn {
    display: none;
  }

  .section {
    padding: 64px 0;
  }

  .section-head {
    display: grid;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-copy {
    padding: 16px 0 0;
  }

  .hero-panel {
    min-height: 450px;
    border-radius: 34px;
  }

  .hero-panel-main {
    inset: 20px 20px 142px 20px;
    border-radius: 26px;
  }

  .hero-panel-badge {
    left: 20px;
    right: 20px;
    bottom: 20px;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .metric-card {
    padding: 14px 8px;
  }

  .metric-card strong {
    font-size: 1rem;
  }

  .metric-card span {
    font-size: 0.52rem;
  }

  .cards,
  .process {
    grid-template-columns: 1fr;
  }

  .dark-band {
    padding: 34px 22px;
    border-radius: 32px;
  }

  .corporate-lobby-frame {
    border-radius: 30px;
  }

  .project-row {
    grid-template-columns: 70px 1fr;
  }

  .project-row .status {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
    display: grid;
  }

  .legal-grid {
    grid-template-columns: 1fr;
  }

  .legal-card {
    padding: 22px;
    border-radius: 24px;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 22px, 1440px);
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.35rem;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .card {
    padding: 24px;
  }

  .hero-panel {
    min-height: 390px;
  }

}
