* {
  box-sizing: border-box;
}

:root {
  --bg: #f5f6f8;
  --bg-soft: #ffffff;
  --text: #141414;
  --muted: #666b76;
  --muted-2: #8a8f99;
  --line: rgba(20, 20, 20, 0.1);
  --red: #ef2d35;
  --red-dark: #a80f18;
  --red-soft: rgba(239, 45, 53, 0.1);
  --black: #0d0d0f;
  --card: rgba(255, 255, 255, 0.76);
  --shadow: 0 24px 70px rgba(14, 18, 28, 0.12);
  --radius: 28px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(239, 45, 53, 0.1), transparent 28%),
    radial-gradient(circle at 90% 8%, rgba(13, 13, 15, 0.06), transparent 24%),
    var(--bg);
  color: var(--text);
  font-family: Inter, Arial, Helvetica, sans-serif;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 246, 248, 0.78);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(20, 20, 20, 0.08);
}

.header-inner {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--text);
  text-align: left;
}

.brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--red), #6e0710);
  display: grid;
  place-items: center;
  box-shadow: 0 14px 34px rgba(239, 45, 53, 0.28);
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-logo.fallback-logo {
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
}

.brand-title {
  font-size: 16px;
  font-weight: 950;
  letter-spacing: 1.4px;
}

.brand-subtitle {
  margin-top: 2px;
  color: var(--muted-2);
  font-size: 11px;
  font-weight: 700;
}

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

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 750;
  transition: 0.2s ease;
}

.nav a:hover {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ghost-btn,
.small-primary-btn,
.primary-btn,
.secondary-btn {
  border: none;
  cursor: pointer;
  border-radius: 16px;
  font-weight: 850;
  transition: 0.2s ease;
  white-space: nowrap;
}

.ghost-btn {
  padding: 12px 17px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--line);
}

.small-primary-btn {
  padding: 12px 18px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 14px 34px rgba(239, 45, 53, 0.23);
}

.primary-btn {
  padding: 17px 25px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 18px 42px rgba(239, 45, 53, 0.24);
}

.secondary-btn {
  padding: 16px 24px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(14, 18, 28, 0.06);
}

.ghost-btn:hover,
.small-primary-btn:hover,
.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  padding: 88px 0 95px;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(20, 20, 20, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 20, 20, 0.06) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at center, black, transparent 72%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
}

.eyebrow,
.label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--red-dark);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(239, 45, 53, 0.18);
  box-shadow: 0 12px 30px rgba(14, 18, 28, 0.06);
  font-size: 13px;
  font-weight: 900;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 0 7px rgba(239, 45, 53, 0.14);
}

h1 {
  margin: 24px 0 20px;
  max-width: 870px;
  font-size: clamp(44px, 6.2vw, 82px);
  line-height: 0.94;
  letter-spacing: -3px;
  font-weight: 950;
}

h2 {
  margin: 16px 0 15px;
  font-size: clamp(32px, 4.3vw, 54px);
  line-height: 1.02;
  letter-spacing: -1.7px;
  font-weight: 950;
}

h3 {
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing: -0.4px;
}

.hero-text,
.section-title p,
.module-card p,
.feature-card p,
.process-step p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.66;
}

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

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.trust-row div {
  padding: 17px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--line);
}

.trust-row b {
  display: block;
  font-size: 24px;
  font-weight: 950;
}

.trust-row span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 610px;
}

.phone-card {
  position: relative;
  z-index: 2;
  width: min(440px, 100%);
  margin: 0 auto;
  padding: 22px;
  border-radius: 40px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.64)),
    #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow);
}

.phone-top,
.phone-status,
.object-map-header,
.dashboard-top,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.phone-top span,
.object-map-header span,
.dashboard-top span {
  display: block;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.phone-top b,
.object-map-header b,
.dashboard-top b {
  display: block;
  margin-top: 5px;
  font-size: 18px;
}

.live-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #27c268;
  box-shadow: 0 0 0 9px rgba(39, 194, 104, 0.14);
}

.mini-map {
  position: relative;
  height: 390px;
  margin: 26px 0;
  border-radius: 30px;
  overflow: hidden;
  background:
    linear-gradient(rgba(13, 13, 15, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 13, 15, 0.055) 1px, transparent 1px),
    linear-gradient(135deg, #f9fafb, #e9edf2);
  background-size: 34px 34px, 34px 34px, auto;
  border: 1px solid rgba(13, 13, 15, 0.08);
}

.route-line {
  position: absolute;
  background: rgba(239, 45, 53, 0.28);
  border-radius: 999px;
}

.r1 {
  width: 220px;
  height: 8px;
  left: 70px;
  top: 92px;
  transform: rotate(16deg);
}

.r2 {
  width: 8px;
  height: 170px;
  left: 245px;
  top: 110px;
  transform: rotate(-18deg);
}

.r3 {
  width: 185px;
  height: 8px;
  left: 82px;
  top: 288px;
  transform: rotate(-8deg);
}

.map-point {
  position: absolute;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 24px rgba(14, 18, 28, 0.12);
}

.map-point span {
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: #ffffff;
}

.point-ok {
  background: #27c268;
}

.point-wait {
  background: #d5d9e0;
}

.p1 {
  left: 58px;
  top: 76px;
}

.p2 {
  right: 96px;
  top: 118px;
}

.p3 {
  right: 90px;
  bottom: 92px;
}

.p4 {
  left: 78px;
  bottom: 76px;
}

.guard-dot {
  position: absolute;
  left: 190px;
  top: 178px;
  width: 38px;
  height: 50px;
  animation: guardMove 6s infinite ease-in-out;
}

.guard-head {
  width: 18px;
  height: 18px;
  margin: 0 auto;
  border-radius: 999px;
  background: var(--black);
}

.guard-body {
  width: 30px;
  height: 28px;
  margin: 4px auto 0;
  border-radius: 12px 12px 8px 8px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 12px 26px rgba(239, 45, 53, 0.28);
}

@keyframes guardMove {
  0% {
    transform: translate(-40px, -90px);
  }
  30% {
    transform: translate(80px, -42px);
  }
  60% {
    transform: translate(95px, 94px);
  }
  100% {
    transform: translate(-40px, -90px);
  }
}

.phone-status {
  padding: 18px;
  border-radius: 22px;
  background: var(--black);
  color: #ffffff;
}

.phone-status span {
  display: block;
  color: #9ca3af;
  font-size: 12px;
  font-weight: 800;
}

.phone-status b {
  display: block;
  margin-top: 4px;
}

.phone-status button {
  border: none;
  border-radius: 14px;
  padding: 12px 14px;
  color: #ffffff;
  background: var(--red);
  font-weight: 900;
}

.floating-card {
  position: absolute;
  z-index: 3;
  padding: 17px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  box-shadow: 0 24px 54px rgba(14, 18, 28, 0.13);
}

.floating-card span {
  display: block;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 850;
}

.floating-card b {
  display: block;
  margin-top: 5px;
  font-size: 16px;
}

.card-green {
  top: 70px;
  right: 6px;
  border-color: rgba(39, 194, 104, 0.28);
}

.card-red {
  left: 10px;
  bottom: 110px;
  border-color: rgba(239, 45, 53, 0.28);
}

.section {
  padding: 92px 0;
}

.section-title {
  max-width: 820px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-title.left {
  text-align: left;
  margin-left: 0;
}

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

.feature-card {
  min-height: 255px;
  padding: 25px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 50px rgba(14, 18, 28, 0.07);
}

.feature-card.large {
  grid-column: span 2;
}

.feature-number {
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--red-dark);
  background: var(--red-soft);
  font-weight: 950;
}

.map-section {
  background:
    radial-gradient(circle at 15% 12%, rgba(239, 45, 53, 0.08), transparent 25%),
    #eef1f5;
}

.map-grid {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 46px;
  align-items: center;
}

.map-benefits {
  display: grid;
  gap: 12px;
  margin-top: 25px;
}

.map-benefits div {
  padding: 15px 17px;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight: 780;
}

.object-map-card {
  padding: 24px;
  border-radius: 34px;
  background: #ffffff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.85);
}

.map-status {
  padding: 8px 12px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--red);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 1px;
}

.object-map {
  position: relative;
  height: 430px;
  margin: 24px 0 16px;
  border-radius: 26px;
  overflow: hidden;
  background:
    linear-gradient(rgba(13, 13, 15, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 13, 15, 0.055) 1px, transparent 1px),
    #f4f6f9;
  background-size: 42px 42px, 42px 42px, auto;
  border: 1px solid rgba(13, 13, 15, 0.08);
}

.room {
  position: absolute;
  display: grid;
  place-items: center;
  border: 2px solid rgba(13, 13, 15, 0.1);
  color: #7a808c;
  font-size: 13px;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.7);
}

.room-a {
  left: 30px;
  top: 30px;
  width: 150px;
  height: 110px;
  border-radius: 20px;
}

.room-b {
  right: 30px;
  top: 30px;
  width: 240px;
  height: 150px;
  border-radius: 22px;
}

.room-c {
  left: 30px;
  bottom: 38px;
  width: 210px;
  height: 135px;
  border-radius: 22px;
}

.room-d {
  right: 40px;
  bottom: 40px;
  width: 190px;
  height: 130px;
  border-radius: 22px;
}

.route {
  position: absolute;
  background: rgba(239, 45, 53, 0.26);
  border-radius: 999px;
}

.route.horizontal {
  height: 8px;
}

.route.vertical {
  width: 8px;
}

.route.one {
  width: 280px;
  left: 115px;
  top: 156px;
}

.route.two {
  height: 170px;
  left: 390px;
  top: 156px;
}

.route.three {
  width: 255px;
  right: 110px;
  bottom: 102px;
}

.nfc-point {
  position: absolute;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-weight: 950;
  box-shadow: 0 13px 28px rgba(14, 18, 28, 0.14);
}

.nfc-point.ok {
  background: #27c268;
}

.nfc-point.danger {
  background: var(--red);
}

.nfc-point.wait {
  background: #aab0ba;
}

.point-a {
  left: 95px;
  top: 86px;
}

.point-b {
  right: 140px;
  top: 96px;
}

.point-c {
  right: 130px;
  bottom: 94px;
}

.point-d {
  left: 122px;
  bottom: 92px;
}

.guard-person {
  position: absolute;
  left: 334px;
  top: 250px;
  width: 34px;
  height: 46px;
  animation: mapGuard 7s infinite ease-in-out;
}

.guard-person::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  margin: 0 auto;
  border-radius: 999px;
  background: var(--black);
}

.guard-person div {
  width: 28px;
  height: 28px;
  margin: 3px auto 0;
  border-radius: 12px 12px 8px 8px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
}

@keyframes mapGuard {
  0% {
    transform: translate(-238px, -164px);
  }
  35% {
    transform: translate(150px, -155px);
  }
  70% {
    transform: translate(150px, 100px);
  }
  100% {
    transform: translate(-238px, -164px);
  }
}

.map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.map-legend div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.green-dot,
.red-dot,
.gray-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
}

.green-dot {
  background: #27c268;
}

.red-dot {
  background: var(--red);
}

.gray-dot {
  background: #aab0ba;
}

.crm-section {
  background: #ffffff;
}

.crm-layout {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 24px;
  align-items: stretch;
}

.crm-dashboard {
  padding: 25px;
  border-radius: 34px;
  color: #ffffff;
  background:
    radial-gradient(circle at 88% 0%, rgba(239, 45, 53, 0.35), transparent 28%),
    linear-gradient(135deg, #17171a, #0b0b0d);
  box-shadow: 0 30px 80px rgba(13, 13, 15, 0.22);
}

.dashboard-pill {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(239, 45, 53, 0.18);
  color: #ff6b77;
  font-size: 12px;
  font-weight: 950;
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 24px 0;
}

.metric {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.metric span {
  display: block;
  color: #aeb4bf;
  font-size: 12px;
  font-weight: 850;
}

.metric b {
  display: block;
  margin-top: 8px;
  font-size: 26px;
}

.metric.danger {
  border: 1px solid rgba(239, 45, 53, 0.48);
}

.dashboard-table {
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
}

.table-row {
  display: grid;
  grid-template-columns: 1fr 0.7fr 0.7fr;
  gap: 10px;
  padding: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #d7dbe2;
  font-size: 14px;
  font-weight: 750;
}

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

.table-row.head {
  color: #8d95a3;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.8px;
}

.green-text {
  color: #45d483;
}

.red-text {
  color: #ff5363;
}

.crm-modules {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.module-card {
  padding: 22px;
  border-radius: 24px;
  background: #f5f6f8;
  border: 1px solid var(--line);
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.process-section {
  background: #f5f6f8;
}

.process {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
  align-items: stretch;
  gap: 0;
}

.process-step {
  padding: 24px;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 46px rgba(14, 18, 28, 0.06);
}

.process-step span {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  font-weight: 950;
}

.process-line {
  height: 2px;
  align-self: center;
  background: linear-gradient(90deg, rgba(239, 45, 53, 0.2), rgba(239, 45, 53, 0.62));
}

.contacts-section {
  background:
    radial-gradient(circle at 18% 20%, rgba(239, 45, 53, 0.1), transparent 25%),
    #eef1f5;
}

.contacts-box {
  padding: 48px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

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

.contact-card {
  cursor: pointer;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: #ffffff;
  text-align: left;
  transition: 0.2s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(14, 18, 28, 0.08);
}

.contact-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  font-size: 13px;
  font-weight: 950;
}

.contact-card span {
  display: block;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card b {
  display: block;
  margin-top: 6px;
  color: var(--text);
  font-size: 16px;
}

.contacts-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 100;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  pointer-events: none;
  padding: 14px 18px;
  border-radius: 16px;
  background: var(--black);
  color: #ffffff;
  font-weight: 850;
  box-shadow: 0 18px 42px rgba(14, 18, 28, 0.2);
  transition: 0.2s ease;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.footer {
  padding: 28px 0;
  color: var(--muted);
  background: #ffffff;
  border-top: 1px solid var(--line);
  font-weight: 750;
}

@media (max-width: 1040px) {
  .nav {
    display: none;
  }

  .hero-grid,
  .map-grid,
  .crm-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 540px;
  }

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

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

  .process {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .process-line {
    display: none;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .header-inner {
    height: 70px;
  }

  .header-actions .ghost-btn {
    display: none;
  }

  .brand-subtitle {
    display: none;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .hero {
    padding: 56px 0 72px;
  }

  h1 {
    font-size: 43px;
    letter-spacing: -1.7px;
  }

  h2 {
    font-size: 34px;
    letter-spacing: -1px;
  }

  .hero-text,
  .section-title p,
  .module-card p,
  .feature-card p,
  .process-step p {
    font-size: 16px;
  }

  .hero-actions-main,
  .contacts-actions {
    flex-direction: column;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
  }

  .trust-row,
  .feature-grid,
  .contact-grid,
  .dashboard-metrics {
    grid-template-columns: 1fr;
  }

  .feature-card.large {
    grid-column: span 1;
  }

  .hero-visual {
    min-height: auto;
  }

  .floating-card {
    display: none;
  }

  .phone-card {
    border-radius: 30px;
    padding: 16px;
  }

  .mini-map {
    height: 330px;
  }

  .object-map-card {
    padding: 16px;
    border-radius: 28px;
  }

  .object-map {
    height: 350px;
  }

  .room {
    font-size: 11px;
  }

  .room-a {
    width: 120px;
    height: 90px;
  }

  .room-b {
    width: 160px;
    height: 120px;
  }

  .room-c {
    width: 150px;
    height: 115px;
  }

  .room-d {
    width: 145px;
    height: 110px;
  }

  .crm-dashboard,
  .contacts-box {
    padding: 22px;
    border-radius: 30px;
  }

  .table-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}